blob: 89b5d245ff9b7c1549fa0d03b37f993755d8298e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
# Cache the options available to certain programs. Run all this in a subshell
# (none of its state needs to endure in the session)
(
options() {
# Check or create the directory to cache the options
# Shift the program name off; remaining arguments are the options to check
dir=$HOME/.cache/sh/opt/$1
prog=$1
shift
# Directory already exists; bail out
[ -d "$dir" ] && return
# Create the directory and step into it
command -p mkdir -p -- "$dir" || return
cd -- "$dir" || return
# Write the program's --help output to a file, even if it's empty
# This probably only works with GNU tools in general
"$prog" --help </dev/null >help 2>/dev/null || return
# Iterate through remaining arguments (desired options), creating files to
# show they're available if found in the help output
for opt ; do
command -p grep -q -- '[^[:alnum:]]--'"$opt"'[^[:alnum:]]' help &&
touch -- "$opt"
done
}
# Cache options for bc(1)
options bc \
quiet
# Cache options for ed(1)
options ed \
verbose
# Cache options for grep(1)
options grep \
binary-files \
color \
devices \
directories \
exclude \
exclude-dir
# Cache options for ls(1)
options ls \
almost-all \
block-size \
color \
human-readable \
time-style
)
|