1 #!/bin/sh 2 if ! grep dash /etc/shells > /dev/null 2>&1; then 3 echo "Adding dash to /etc/shells ..." 4 echo "/bin/dash" >> /etc/shells 5 fi
Generated by cgit