8 lines
112 B
Bash
Executable File
8 lines
112 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# 'top' requires set-group-id sys to read /dev/kmem
|
|
#
|
|
top=top-3.4/top
|
|
chgrp sys $top
|
|
chmod g+s $top
|