8 lines
77 B
Bash
8 lines
77 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
PROC="$1"
|
||
|
shift
|
||
|
|
||
|
nsenter -t $(pgrep "$PROC" | head -1) $@
|
||
|
exit $?
|