summaryrefslogtreecommitdiff
path: root/src/store-child-permanently
diff options
context:
space:
mode:
Diffstat (limited to 'src/store-child-permanently')
-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