mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-22 19:44:21 +01:00
7 lines
126 B
Bash
7 lines
126 B
Bash
#!/bin/sh
|
|
|
|
# Add sash to the shells if not there
|
|
if ! grep -q "/sash$" etc/shells ; then
|
|
echo "/bin/sash" >> etc/shells
|
|
fi
|
|
|