mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-01-30 02:44:42 +01:00
New general aliases
This commit is contained in:
parent
60e209325d
commit
76f5989d32
2 changed files with 16 additions and 0 deletions
|
|
@ -15,3 +15,11 @@ function take() {
|
|||
cd $1
|
||||
}
|
||||
|
||||
function show_processes() {
|
||||
if (($# == 0)); then
|
||||
ps -ef
|
||||
else
|
||||
echo " UID PID PPID C STIME TTY TIME CMD"
|
||||
ps -ef | grep $*
|
||||
fi
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue