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 …
2
votes
What is your latest useful Perl one-liner (or a pipe involving Perl)?
I use this quite frequently to quickly convert epoch times to a useful datestamp.
perl -l -e 'print scalar(localtime($ARGV[0]))'
Make an alias in your shell:
…
1
vote
What are the most often linux (power) commands that you use?
The command in the original question can be better written as,
grep -RHi "string"
I use grep -R quite frequently. Of course, the find command can be used for fine- …
