Search Results

8
votes

Linux: compute a single hash for a given folder & contents?

One possible way would be: sha1sum /path/to/folder/* | sha1sum If there is a whole directory tree, you're probably better off using find and xargs. One possible command would be …
0
votes

Favourite command line trick

When trying to find if a specific program is running: ps options | grep [p]rogram That is, turning the program name into a non-self-matching regular expression. …
5
votes

How to remove files starting with double hyphen?

Either rm -- --testings.html or rm ./--testings.html. …
1
vote

How can I write a linux bash script, that tells me which computer are on in my LAN ?

If you're limiting yourself to only having the last octet changing, this script should do it. It should be fairly obvious how to extend it from one to multiple octets. #! /bin/bash BASE= …
1
vote

Execute a shell command from a shell script without stopping if error occurs

If invoke-rc.d tomcat stop is the only thing you want to protect against failing, maybe invoke-rc.d tomcat stop || true may do it? That should never have a non-zero exit status. …