diff options
| author | June McEnroe <june@causal.agency> | 2018-05-13 00:37:16 -0400 |
|---|---|---|
| committer | June McEnroe <june@causal.agency> | 2018-05-13 00:42:27 -0400 |
| commit | 758b40ccc4193535bd07801d554bf5416969804d (patch) | |
| tree | 2a196a6fc7a9ad7dc0c0360ee90b6ceb454dcad7 /prune.zsh | |
| parent | I've really done it now (diff) | |
| download | src-758b40ccc4193535bd07801d554bf5416969804d.tar.gz src-758b40ccc4193535bd07801d554bf5416969804d.zip | |
Tabify shell scripts
Diffstat (limited to 'prune.zsh')
| -rwxr-xr-x | prune.zsh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/prune.zsh b/prune.zsh index 928fe066..db85a9d1 100755 --- a/prune.zsh +++ b/prune.zsh @@ -2,6 +2,6 @@ set -o errexit -o nounset -o pipefail find -L ~ -type l -lname "$PWD/*" | while read -r linkPath; do - rm "$linkPath" - echo "$linkPath" + rm "$linkPath" + echo "$linkPath" done |