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
09 Jul How To Find your Server’s Public IP Address by kayals in Linux, System AdministrationComments ip addr show eth0 | grep inet | awk '{ print $2; }' | sed 's/\/.*$//'... Read More
26 Mar Remove Spaces between lines in a text file by kayals in Linux, System AdministrationComments grep -e '[^\n]' temp.txt > temp.out... Read More