We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff09377 commit ae77a04Copy full SHA for ae77a04
1 file changed
scripts/termux-sms-list
@@ -25,17 +25,17 @@ show_usage () {
25
exit 0
26
}
27
28
-while getopts :hdl:tf:cno: option
+while getopts :hdl:t:f:cno: option
29
do
30
case "$option" in
31
h) show_usage;;
32
d) PARAMS="$PARAMS --ez show-dates true";;
33
l) PARAM_LIMIT=$OPTARG;;
34
- n) PARAMS="$PARAMS --ez show-phone-numbers true";;
35
- o) PARAM_OFFSET=$OPTARG;;
36
t) PARAM_TYPE=$OPTARG;;
37
- c) PARAMS="$PARAMS --ez conversation-list true";;
38
f) PARAM_NUMBER="--es from $OPTARG";;
+ c) PARAMS="$PARAMS --ez conversation-list true";;
+ n) PARAMS="$PARAMS --ez show-phone-numbers true";;
+ o) PARAM_OFFSET=$OPTARG;;
39
?) echo "$SCRIPTNAME: illegal option -$OPTARG"; exit 1;
40
esac
41
done
0 commit comments