summaryrefslogtreecommitdiff
path: root/bin/menuscripts/mhelp
blob: cb7977bf666fdb72b10959a331263ad1b9a4442b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/env sh

program="$(commander -rcd)"

[ "$program" ] || exit 1

option="$("$program" --help |
	# Parse options
	grep -- "^ *-[-a-zA-Z0-9]* " |
	tr -s ' ' |
	sort | uniq |
	column -l 2 -t |
	commander -lxcd |
	awk '{print $1}')"

[ "$option" ] || exit 1

setsid "$program" "$option"