mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-01-02 02:19:06 +01:00
7 lines
146 B
Bash
7 lines
146 B
Bash
# Grep out of ps. Cut to 80 chars
|
|
function psgrep
|
|
{
|
|
/bin/ps alxw |head -1
|
|
/bin/ps alxw |grep $1 |grep -v "grep $1" |cut -c 1-$COLUMNS
|
|
}
|
|
|