ceb08cea2c
Note, these directories are missing Makefiles.. I know that.. and I'm working on it.
7 lines
135 B
Bash
Executable File
7 lines
135 B
Bash
Executable File
#!/bin/sh
|
|
# $NetBSD: script,v 1.1 2001/01/05 02:07:01 garbled Exp $
|
|
userdel -vp 1 $1
|
|
if [ $? -eq 0 ]; then
|
|
echo "User $1 disabled"
|
|
fi
|