11 lines
76 B
Bash
Executable File
11 lines
76 B
Bash
Executable File
#!/bin/bash
|
|
#echo $1
|
|
|
|
|
|
if [ $1 ]; then
|
|
ps aux | grep $@
|
|
else
|
|
ps aux
|
|
fi
|
|
|