Bookmarks
2012
November
14
Mount – Windows subst equivalent in Ubuntu
Nov
14
2012
mount --bind /source /destination or in /etc/fstab /source /destination none bind 0 0
How to set chmod for a folder and all of its subfolders and files?
Nov
14
2012
find . -type d -exec chmod -c 775 {} \; find . -type f -exec chmod -c 664 {} \;