diff options
author | Andrew Cady <d@jerkface.net> | 2019-10-06 20:46:22 -0400 |
---|---|---|
committer | Andrew Cady <d@jerkface.net> | 2019-10-06 20:57:52 -0400 |
commit | 50f4c3f87220c31849ee329004e3cfa1b42a4c6f (patch) | |
tree | 6bea37f383b0de3396f851f28dbf1f3400bf2b7a /src/store-child-permanently | |
parent | 49ea594be4423730a1cb27940341a685735314a6 (diff) |
store-child-permanently will check for file "reused-child"
Diffstat (limited to 'src/store-child-permanently')
-rwxr-xr-x | src/store-child-permanently | 5 |
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 | ||
44 | main "$@" | 44 | case $# in |
45 | 0) read child < reused-child && main "$child" ;; | ||
46 | *) main "$@" ;; | ||
47 | esac | ||