diff options
author | Rasmus Steinke <rasi@xssn.at> | 2017-07-16 00:28:16 +0200 |
---|---|---|
committer | Rasmus Steinke <rasi@xssn.at> | 2017-07-16 00:28:16 +0200 |
commit | 50ab192455f7c1973f0bd72f22b9283c44a96b97 (patch) | |
tree | b98c6b070b6b9a839db59181d3c68d1848582ba8 | |
parent | 21532f8d926c481dc62400c8b427f679e035c85d (diff) | |
download | rofi-pass-50ab192455f7c1973f0bd72f22b9283c44a96b97.tar.gz |
turn help message into herdoc
-rwxr-xr-x | rofi-pass | 21 |
1 files changed, 11 insertions, 10 deletions
@@ -581,16 +581,17 @@ insertPass () { } help_msg () { - echo "rofi-pass (Version: 1.2)" - echo "" - echo -e "Usage:\n" - echo "--insert insert new entry to password store" - echo "--manage edit/move/delete entries" - echo "--root set custom root directory" - echo "--last-used highlight last used item" - echo "--show-last show details of last used Entry" - echo "--bmarks run bookmarks Mode" - echo "" + cat <<'EOF' +rofi-pass (Version: 1.2)" + +Usage: + --insert insert new entry to password store + --manage edit/move/delete entries + --root set custom root directory + --last-used highlight last used item + --show-last show details of last used Entry + --bmarks run bookmarks Mode +EOF } main () { |