221495cc86
starting/stopping/showing/restarting of things in /etc/rc.d. Also add a few quick top(1)-like utilties just to round the menu off.
9 lines
234 B
Bash
Executable File
9 lines
234 B
Bash
Executable File
#!/bin/sh
|
|
# $NetBSD: script,v 1.1 2001/04/26 02:26:19 garbled Exp $
|
|
|
|
for i in `ls -1 /etc/rc.d | grep -v ipfilter`
|
|
do
|
|
/etc/rc.d/$i forcestatus
|
|
done 2>&1 | grep -v unknown | grep -v Usage | grep -v 'not found' \
|
|
| grep -vi permission
|