6 lines
141 B
Plaintext
6 lines
141 B
Plaintext
|
#!/bin/sh
|
||
|
if ! grep dash /etc/shells > /dev/null 2>&1; then
|
||
|
echo "Adding dash to /etc/shells ..."
|
||
|
echo "/bin/dash" >> /etc/shells
|
||
|
fi
|