Files
miasma-os/files/system/usr/etc/skel/.oh-my-zsh/plugins/sfffe/sfffe.plugin.zsh
2026-03-24 20:57:42 +11:00

29 lines
591 B
Bash

# ------------------------------------------------------------------------------
# FILE: sfffe.plugin.zsh
# DESCRIPTION: search file for FE
# AUTHOR: yleo77 (ylep77@gmail.com)
# 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'
}