summary refs log tree commit diff
path: root/import.zsh
diff options
context:
space:
mode:
authorJune McEnroe <programble@gmail.com>2017-09-27 12:22:09 -0400
committerJune McEnroe <programble@gmail.com>2017-09-27 12:22:09 -0400
commit522399570d46f29f1caf6f8b0da0877fc37b0e46 (patch)
treef7150fa55bcd0145ffd48c2b08aa5bcff5cd3faf /import.zsh
parentRemove git from common packages (diff)
downloadsrc-522399570d46f29f1caf6f8b0da0877fc37b0e46.tar.gz
src-522399570d46f29f1caf6f8b0da0877fc37b0e46.zip
Sort tail of link.zsh on import
Diffstat (limited to 'import.zsh')
-rwxr-xr-ximport.zsh4
1 files changed, 4 insertions, 0 deletions
diff --git a/import.zsh b/import.zsh
index 6b69865a..8c3309b0 100755
--- a/import.zsh
+++ b/import.zsh
@@ -18,4 +18,8 @@ dest_path="$PWD/home/$1"
 mkdir -p "$(dirname "$dest_path")"
 mv "$source_path" "$dest_path"
 ln -s "$dest_path" "$source_path"
+
 echo "link '$1'" >> link.zsh
+head=$(head -n 21 link.zsh)
+tail=$(tail -n +21 link.zsh | sort)
+echo "$head\n$tail" > link.zsh