diff options
Diffstat (limited to 'import.zsh')
-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 |