diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2012-10-07 13:48:13 +0200 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2012-10-07 13:48:13 +0200 |
commit | a9a40d195b466cb8dc95b226f20e3974f017e9fa (patch) | |
tree | 44b41484e5af7a902396db626d89bc84d1499e8b | |
parent | 82992e177c284d51170fad92438e4cf3a416360e (diff) | |
download | pass-a9a40d195b466cb8dc95b226f20e3974f017e9fa.tar.gz pass-a9a40d195b466cb8dc95b226f20e3974f017e9fa.tar.bz2 pass-a9a40d195b466cb8dc95b226f20e3974f017e9fa.zip |
Rename script internally and use generalized usage message filename.
Diffstat (limited to '')
-rwxr-xr-x | contrib/lastpass2pass.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/lastpass2pass.rb b/contrib/lastpass2pass.rb index e886950..399fb20 100755 --- a/contrib/lastpass2pass.rb +++ b/contrib/lastpass2pass.rb @@ -36,7 +36,7 @@ # Fire up a terminal and run the script, passing the file you saved as an argument. # It should look something like this: # -# ./lastpass_importer.rb path/to/passwords_file +# ./lastpass2pass.rb path/to/passwords_file # Set this variable to place all uncategorised records into a particular group @@ -69,7 +69,7 @@ end # Check for a filename if ARGV.empty? - puts "Usage: lastpass_importer.rb <file> import records from specified file" + puts "Usage: #{$0} <file> import records from specified file" exit 0 end |