Tag: bash

04.12.2014

keep it simple version: fileSelect.sh #!/bin/bash select FILENAME in *; do echo “You picked $FILENAME ($REPLY), it is now only accessible to you.” chmod go-rwx “$FILENAME” break; done   creditz: http://tldp.org/LDP/Bash-Beginners-Guide/html/sect_09_06.html cool grafical but not working-right version: while this does […]