From 0460970a937191ee3ff70658503e7407d4cf6caa Mon Sep 17 00:00:00 2001 From: Curtis McEnroe Date: Thu, 16 Aug 2018 18:00:42 -0400 Subject: Port all scripts to sh Not hard, but having to escape ( ) inside [ ] had me confused for a bit. --- prune.sh | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100755 prune.sh (limited to 'prune.sh') diff --git a/prune.sh b/prune.sh new file mode 100755 index 00000000..31ab30cf --- /dev/null +++ b/prune.sh @@ -0,0 +1,7 @@ +#!/bin/sh +set -e -u + +find -L ~ -type l -lname "$PWD/*" | while read -r linkPath; do + rm "$linkPath" + echo "$linkPath" +done -- cgit 1.4.1