03 Sep Linux Cheatsheet by kayals in System AdministrationComments Find all directories owned by user find . -type d -user kayals Rename filename with spaces to Underscore for f in *\ *; do mv "$f" "${f// /_}"; done... Read More