diff options
author | June McEnroe <programble@gmail.com> | 2017-09-27 12:22:09 -0400 |
---|---|---|
committer | June McEnroe <programble@gmail.com> | 2017-09-27 12:22:09 -0400 |
commit | 522399570d46f29f1caf6f8b0da0877fc37b0e46 (patch) | |
tree | f7150fa55bcd0145ffd48c2b08aa5bcff5cd3faf | |
parent | Remove git from common packages (diff) | |
download | src-522399570d46f29f1caf6f8b0da0877fc37b0e46.tar.gz src-522399570d46f29f1caf6f8b0da0877fc37b0e46.zip |
Sort tail of link.zsh on import
Diffstat (limited to '')
-rwxr-xr-x | import.zsh | 4 |
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 |