1
vote
linux/shell script
Have you considered writing either a script or a program to write the script for you? Generating shell-scripts, then running them can sometimes be a powerful solution to problems.
…
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 …
2
votes
How do I get the path of a process in Unix / Linux
There's no "guaranteed to work anywhere" method.
Step 1 is to check argv[0], if the program was started by its full path, this would (usually) have the full path. If it was started by a rel …
6
votes
.o files vs .a files
A .o file is the result of compiling a single compilation unit (essentially a source-code file, with associated header files) while a .a file is one or more .o files packaged up as a library.
…
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.
…
