We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d50f40 commit 44f29daCopy full SHA for 44f29da
completions/chflags
@@ -13,7 +13,8 @@ _comp_cmd_chflags()
13
for w in "${words[@]}"; do
14
[[ $w == -R ]] && opts="-H -L -P" && break
15
done
16
- _comp_compgen -- -W '-f -h -v -x -R $opts'
+ [[ $OSTYPE == *freebsd* ]] && opts="$opts -x"
17
+ _comp_compgen -- -W '-f -h -v -R $opts'
18
else
19
local REPLY
20
# The first argument is a list of flags; the rest are filedir.
0 commit comments