www.nico.schottelius.org/software/cinit/browse_source/cinit-0.1/bin/cinit.remove.getty

24 lines
449 B
Text
Raw Normal View History

#!/bin/sh
# Nico Schottelius
# cinit: create gettys
# init variables
. $(dirname $0)/cinit.read-conf
BASEDIR=$DESTDIR/$CINIT_DIR/$GETTY_DIR
NUMBER=$(cd $BASEDIR && ls | awk '/^((0[xX])[0-9a-fA-F]+)|([0-9]+)$/ { print }' | tail -n 1)
[ ! "$NUMBER" ] && exit 1
DDIR=$BASEDIR/$NUMBER
echo "Removing getty number $NUMBER located in $DDIR ..."
read -p "Are you sure [y/N]? " yes
if [ "$yes" = "y" ]; then
rm -r $DDIR
else
echo "Aborted."
fi