7 lines
172 B
Plaintext
7 lines
172 B
Plaintext
|
#!/bin/sh
|
||
|
#
|
||
|
# Wow, using $* causes great pain with embedded spaces in arguments.
|
||
|
# The "$@" won't break that into 2 arguments.
|
||
|
#
|
||
|
LD_PRELOAD=proc/libproc.so exec ./top "$@"
|