diff options
author | zachir <zachir@librem.one> | 2025-08-30 09:41:28 -0500 |
---|---|---|
committer | zachir <zachir@librem.one> | 2025-08-30 09:41:28 -0500 |
commit | 8f76db779212819fe2fc6953fe12a30d155b5448 (patch) | |
tree | 61884fe4b3138105082d62492569acb77c4aa5c5 | |
parent | a26e6ae5253d95e7238dab20e298129a468e04f6 (diff) |
Add help message to dmount
-rwxr-xr-x | dmount | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -1,7 +1,13 @@ #!/bin/sh printhelp () { - printf "tmp\n" + printf "dmount: decrypt and mount drives and mount android phones\n" + printf "dmount [-pP] [-d X] [-u X] [-g X]\n" + printf "\t-p) mount with userid and groupid\n" + printf "\t-P) mount without userid and groupid\n" + printf "\t-d X) provide X as arg to dmenu\n" + printf "\t-u X) use X as userid\n" + printf "\t-g X) use X as groupid\n" } show () { |