0
votes
How to loop over files?
What happens if you do
#!/bin/sh
for file in /etc/test/config-*
do
echo $file
done
The nature of the "config-*" files in /etc/test might tell more about the iss …
0
votes
How to redirect all stderr in bash?
Try your commands in doublequotes, like so:
ssh remotehost "command" 2>~/stderr
Tested on my local system using a nonexistant file on the remote host.
…
7
votes
design patterns or best practices for shell scripts
Take a look at the Advanced Bash-Scripting Guide for a lot of wisdom on shell scripting - not just Bash, either.
Do …
0
votes
How do you run a script on login in *nix?
Search your local system's bash man page for ^INVOCATION for information on which file is going to be read at startup.
man bash
/^INVOCATION
Also in the FILES sec …
3
votes
What is your favorite bash prompt?
Here's mine.
# this prompt will show the hostname in green if the last command returned 0,
# otherwise it will be red.
PS1="\[\`if [[ \$? = "0" ]]; then echo '\e[32m\h\e[0m'; else e …
3
votes
Real-time history export amongst bash terminal windows
You can use history -a to append the current session's history to the histfile, then use history -r on the other terminals to read the histfile.
…
3
votes
Any interesting uses of Makefiles to share?
Other than obvious uses in programming, I've seen Makefiles used to perform repetitive tasks on servers to manage system settings such as user/group creation, package upgrades/updates, and copying …
