diff options
author | Florian Pritz <bluewind@xinu.at> | 2012-02-13 18:24:59 +0100 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2012-02-13 18:25:50 +0100 |
commit | 03a3ba0aed2a36ca9e7f6cbc93bc7739a5e57a27 (patch) | |
tree | 4567bd89b433a2e53b07afab91c3976dd4a81669 | |
parent | 8156a6fbe9d17f24f459c4c29229cf4ce0fe63a5 (diff) | |
download | bin-03a3ba0aed2a36ca9e7f6cbc93bc7739a5e57a27.tar.gz bin-03a3ba0aed2a36ca9e7f6cbc93bc7739a5e57a27.tar.xz |
restore.pl: change usage message
Signed-off-by: Florian Pritz <bluewind@xinu.at>
-rwxr-xr-x | restore.pl | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,6 +1,5 @@ #!/usr/bin/perl #---------------------------------------------------- -# Version: 0.1.2 # Author: Florian "Bluewind" Pritz <flo@xssn.at> # # Licensed under WTFPL v2 @@ -23,7 +22,8 @@ my %mapping = ( ); if (@ARGV == 0) { - print "usage: ", basename($0), " files(s)...\n"; + print "usage: ", basename($0), " <files|directory ...>\n"; + print "restore the target(s) from backup\n"; exit 0; } |