diff options
author | June McEnroe <programble@gmail.com> | 2018-03-28 13:13:51 -0400 |
---|---|---|
committer | June McEnroe <programble@gmail.com> | 2018-03-28 13:38:22 -0400 |
commit | 2664c3dcc46b17dffb7c673435f52af69ce8d956 (patch) | |
tree | a82c6990d55ac68813ca5adee13ace2ee1816e0a /link.zsh | |
parent | Sort extern crate lines with \c (diff) | |
download | src-2664c3dcc46b17dffb7c673435f52af69ce8d956.tar.gz src-2664c3dcc46b17dffb7c673435f52af69ce8d956.zip |
Use [[ ]] in zsh scripts
Diffstat (limited to '')
-rwxr-xr-x | link.zsh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/link.zsh b/link.zsh index 42c8d04c..f5ed565c 100755 --- a/link.zsh +++ b/link.zsh @@ -1,10 +1,10 @@ #!/usr/bin/env zsh set -o errexit -o nounset -o pipefail -if [ $# -eq 1 ]; then +if [[ $# -eq 1 ]]; then linkPath="$1" filePath="$PWD/home/${linkPath#$HOME/}" - [ ! -f "$filePath" ] + [[ ! -f "$filePath" ]] mkdir -p $(dirname "$filePath") mv "$linkPath" "$filePath" fi @@ -12,7 +12,7 @@ fi find home -type f | while read findPath; do filePath="$PWD/$findPath" linkPath="$HOME/${findPath#home/}" - [ -L "$linkPath" ] && continue + [[ -L "$linkPath" ]] && continue mkdir -p $(dirname "$linkPath") ln -s "$filePath" "$linkPath" echo "$linkPath" |