]> git.phdru.name Git - git-scripts.git/commitdiff
Create tmp dir in advance; set trap to remove it
authorOleg Broytman <phd@phdru.name>
Fri, 14 Oct 2016 22:12:31 +0000 (01:12 +0300)
committerOleg Broytman <phd@phdru.name>
Fri, 14 Oct 2016 22:14:50 +0000 (01:14 +0300)
ls-not-pushed-carefully
ls-status-carefully
status-dirty-carefully

index 0ae1935e3bccacec74c64a85c16afa17c8d0c3c5..266e4cad675142c627edd96827d703c6817c3f5b 100755 (executable)
@@ -1,13 +1,14 @@
 #! /bin/sh
 
+LSTMP="$HOME"/tmp/ls-not-pushed-carefully.tmp
+export LSTMP
+trap 'exec rm -rf "$LSTMP"' 0 HUP INT QUIT TERM
+
 cd "`dirname \"$0\"`" && prog_dir="`pwd`" &&
-cd "$HOME"/tmp && rm -rf ls-not-pushed-carefully.tmp &&
+rm -rf "$LSTMP" && mkdir "$LSTMP" &&
 
-LSTMP="$HOME"/tmp/ls-not-pushed-carefully.tmp \
 "$prog_dir"/do-all \
    'test "$g" = "$d/.git" || continue;' \
    'rsync -aW --del --protocol=28 "$d" "$LSTMP" && cd "$LSTMP/$b" &&' \
    'test -n "`git status --branch --short | grep "ahead\|behind"`" &&
-   echo "$d"' &&
-
-cd "$HOME"/tmp && exec rm -rf ls-not-pushed-carefully.tmp
+   echo "$d"'
index eca5999e90a8d47ddec783756ea8810444803c16..cecdfa4ab079b759d469876b4d54a81271e25765 100755 (executable)
@@ -1,12 +1,13 @@
 #! /bin/sh
 
+LSTMP="$HOME"/tmp/ls-status-carefully.tmp
+export LSTMP
+trap 'exec rm -rf "$LSTMP"' 0 HUP INT QUIT TERM
+
 cd "`dirname \"$0\"`" && prog_dir="`pwd`" &&
-cd "$HOME"/tmp && rm -rf ls-status-carefully.tmp &&
+rm -rf "$LSTMP" && mkdir "$LSTMP" &&
 
-LSTMP="$HOME"/tmp/ls-status-carefully.tmp \
 "$prog_dir"/do-all \
    'test "$g" = "$d/.git" || continue;' \
    'rsync -aW --del --protocol=28 "$d" "$LSTMP" && cd "$LSTMP/$b" &&' \
-   'test -n "`git status --short`" && echo "$d"' &&
-
-cd "$HOME"/tmp && exec rm -rf ls-status-carefully.tmp
+   'test -n "`git status --short`" && echo "$d"'
index 26ab5bac7b013ccd3bf2d54d671999b4bb5ae265..4298b09425a2af5ea2fd0c780e431988924d759d 100755 (executable)
@@ -1,13 +1,14 @@
 #! /bin/sh
 
+STMP="$HOME"/tmp/status-dirty-carefully.tmp
+export STMP
+trap 'exec rm -rf "$STMP"' 0 HUP INT QUIT TERM
+
 cd "`dirname \"$0\"`" && prog_dir="`pwd`" &&
-cd "$HOME"/tmp && rm -rf status-dirty-carefully.tmp &&
+rm -rf "$STMP" && mkdir "$STMP" &&
 
-STMP="$HOME"/tmp/status-dirty-carefully.tmp &&
 for d in `"$prog_dir"/ls-dirty`
 do
    echo "----- $d -----" && rsync -aW --del --protocol=28 "$d" "$STMP" &&
-   cd "$STMP/`basename $d`" && git status --branch
-done &&
-
-cd "$HOME"/tmp && exec rm -rf status-dirty-carefully.tmp
+   cd "$STMP/`basename \"$d\"`" && git status --branch
+done