diff options
author | Marvin Borner | 2019-03-05 01:09:01 +0100 |
---|---|---|
committer | Marvin Borner | 2019-03-05 01:09:01 +0100 |
commit | 55457187d18221e76bd12f0fb2cfab65c49b92fb (patch) | |
tree | 8db042d2d80710d54100c2709ad4332153ac848a /.oh-my-zsh/plugins/sfffe |
Initial commit
Diffstat (limited to '.oh-my-zsh/plugins/sfffe')
-rw-r--r-- | .oh-my-zsh/plugins/sfffe/sfffe.plugin.zsh | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/.oh-my-zsh/plugins/sfffe/sfffe.plugin.zsh b/.oh-my-zsh/plugins/sfffe/sfffe.plugin.zsh new file mode 100644 index 0000000..a0f0349 --- /dev/null +++ b/.oh-my-zsh/plugins/sfffe/sfffe.plugin.zsh @@ -0,0 +1,28 @@ +# ------------------------------------------------------------------------------ +# FILE: sfffe.plugin.zsh +# DESCRIPTION: search file for FE +# AUTHOR: yleo77 (ylep77@gmail.com) +# VERSION: 0.1 +# REQUIRE: ack +# ------------------------------------------------------------------------------ + +if [ ! -x $(which ack) ]; then + echo \'ack\' is not installed! + exit -1 +fi + +ajs() { + ack "$@" --type js +} + +acss() { + ack "$@" --type css +} + +fjs() { + find ./ -name "$@*" -type f | grep '\.js' +} + +fcss() { + find ./ -name "$@*" -type f | grep '\.css' +} |