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