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