summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrew Cady <d@jerkface.net>2019-10-06 20:46:22 -0400
committerAndrew Cady <d@jerkface.net>2019-10-06 20:57:52 -0400
commit50f4c3f87220c31849ee329004e3cfa1b42a4c6f (patch)
tree6bea37f383b0de3396f851f28dbf1f3400bf2b7a /src
parent49ea594be4423730a1cb27940341a685735314a6 (diff)
store-child-permanently will check for file "reused-child"
Diffstat (limited to 'src')
-rwxr-xr-xsrc/store-child-permanently5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/store-child-permanently b/src/store-child-permanently
index 463f776..899371f 100755
--- a/src/store-child-permanently
+++ b/src/store-child-permanently
@@ -41,4 +41,7 @@ main()
41 fi 41 fi
42} 42}
43 43
44main "$@" 44case $# in
45 0) read child < reused-child && main "$child" ;;
46 *) main "$@" ;;
47esac