diff --git a/.config/bash/module/Ps.sh b/.config/bash/module/Ps.sh index 438b627..04eb02e 100644 --- a/.config/bash/module/Ps.sh +++ b/.config/bash/module/Ps.sh @@ -4,8 +4,8 @@ function ps() { local process="${1}" if [[ "${process}" = "" ]]; then - /usr/bin/ps aux + ps aux else - /usr/bin/ps aux | sed -n -e "1p" -e "/${process}/Ip" | sed -e "/sed -n -e 1p -e/d" + ps aux | sed -n -e "1p" -e "/${process}/Ip" | sed -e "/sed -n -e 1p -e/d" fi }