7 lines
139 B
Bash
Executable File
7 lines
139 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# This script should run with /bin/sh
|
|
# regardless of whether -s or -n is passed.
|
|
|
|
ps -o pid,comm,args | grep $$ | grep /bin/sh
|