6 lines
119 B
Bash
6 lines
119 B
Bash
#!/bin/sh
|
|
if ! grep -q mksh /etc/shells; then
|
|
echo Adding mksh to /etc/shells
|
|
echo /bin/mksh >> /etc/shells
|
|
fi
|