mirror of https://github.com/0intro/wmii
Properly grep out shell variables in config_whatis (so that it's possible to use ~/.wmii-3.5/status instead of Action-status).
This commit is contained in:
parent
08f2f0cff8
commit
f99d66b076
|
@ -12,7 +12,7 @@ if(echo $0 | grep -s '(^|/)rc\.wmii\.local$') {
|
|||
}
|
||||
|
||||
fn config_whatis {
|
||||
prog = `{@{path=$confpath whatis $1} | grep -v '^fn|= ' || echo /dev/null}
|
||||
prog = `{@{path=$confpath whatis $1} | grep -v '^fn|=' || echo /dev/null}
|
||||
shift; echo $prog $*
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue