The “tmpwatch ” command in linux is to removes files which haven't been accessed for a period of time. The tmpwatch recursively removes files which haven't been accessed for a given time. Normally, it's used to clean up directories which are used for temporary holding space such as /tmp. If you are noticing "/tmp" getting…
Continue readingTag: ssh command
How to compress / zip a directory in Linux
To compress in tar.gz format: tar -cv /directory | gzip > archive.tar.gz To decompress the tar.gz file: tar -zxvf archive.tar.gz
Continue reading