You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
# ------------------------------------------------------------------------------ # FILE: sfffe.plugin.zsh # DESCRIPTION: search file for FE # AUTHOR: yleo77 ([email protected]) # VERSION: 0.1 # REQUIRE: ack # ------------------------------------------------------------------------------
if (( ! $+commands[ack] )); then echo "'ack' is not installed!" return fi
ajs() { ack "$@" --type js }
acss() { ack "$@" --type css }
fjs() { find ./ -name "$@*" -type f | grep '\.js' }
fcss() { find ./ -name "$@*" -type f | grep '\.css' }
|