Remove more unused scripts

This commit is contained in:
2022-08-15 20:37:03 +08:00
parent 824fcee942
commit 4f8e48cea3
21 changed files with 22 additions and 179 deletions

15
bash/sources/20_fast-greps Executable file
View File

@@ -0,0 +1,15 @@
#!/bin/bash
alias grepphp='grep -n --include=*.php'
alias grepjs='grep -n --include=*.js'
function grept {
if [[ -z "$1" ]]; then
__func_head "TYPE GREP_ARGS"
echo
else
CMD="grep --color=auto -n --include=*.$1"
shift
$CMD $@
fi
}