Hi All!
I'm trying to remove the vc/1-11 lines in my /etc/securetty file.
Is there a way to elegantly do this?
console
vc/1
vc/2
vc/3
.
.
vc/10
vc/11
tty/1
tty/2
tty/3
.
.
.
tty/10
tty/11
Doing:
rm /files/etc/securetty/*[.='vc/1'] works for one line
but
rm /files/etc/securetty/*[.='vc/*'] doesn't appear to iterate for the other vc lines.
Any suggestions?
-Kris