diff options
-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 | ||