mirror of
https://gitee.com/mirrors/ohmyzsh.git
synced 2026-07-31 03:35:22 +08:00
8 lines
190 B
Bash
8 lines
190 B
Bash
_phing () {
|
|
if [ -f build.xml ]; then
|
|
compadd $(phing -l|grep -v "\[property\]"|grep -v "Buildfile"|sed 1d|grep -v ":$" |grep -v "^\-*$"|awk '{print $1}')
|
|
fi
|
|
}
|
|
|
|
compdef _phing phing
|