1
2023-10-19 11:20:21 -04:00

15 lines
321 B
Bash

# We are compatible with bash, so first load the bash-specific macros
. $EWCONFIG_ROOT/configs/shells/bash/macros.sh
# Aliases
alias zshreload="source ~/.zshrc"
# Search for a process
proc-grep() {
if [ $# != 1 ]; then
echo "Usage: proc-grep <regex>"
else
ps aux | { head -1; grep $1 }
fi
}