2
votes
How do you handle the “Too many files” problem when working in Bash?
xargs does not start a new process for each file. It bunches together the arguments. Have a look at the -n option to xargs - it controls the number of arguments passed to each execution of the sub- …
2
votes
What linux shell command returns a part of a string?
expr(1) has a substr subcommand:
expr substr string position length
This may be useful if you don't have bash (perhaps embedded Linux) and you don't want the extra …
2
votes
How to bind a key to sigkill in bash?
I don't think there is any key you can use to send a SIGKILL.
Will SIGQUIT do instead? If you are not catching that, the default is to core dump the process. By default this is ^\. You can …
0
votes
Save last working directory on Bash logout
You most likely want to save the current directory to a file when the shell exits. There are a number of ways to detect the shell exitting:
Put some code in ~/.bash_logout. This will …
1
vote
bash parameter expansion changes original string
Get rid of the backticks and the echo command. It is worse than useless in this situation because it adds nothing, and causes the problem you are trying to solve here.
fs_item="${fs …
2
votes
Check if a package is installed and then install it if it’s not.
This feature already exists in Ubuntu and Debian, in the command-not-found package.
…
0
votes
Hidden features of Bash
One I use a lot is !$ to refer to the last word of the last command:
$ less foobar.txt
...
# I dont want that file any more
$ rm !$
…
4
votes
List files with certain extensions with ls and grep
No need for grep. Shell wildcards will do the trick.
ls *.mp4 *.mp3 *.exe
If you have run
shopt -s nullglob
then unmatched globs …
0
votes
How to rollover the standard output from bash?
As well as multilog, there's also a similar tool called svlogd from the runit suite. You may find that already packaged in your distro, …
1
vote
Read data from pipe and write to standard out with a delay in between. Must handle binary files too.
Do you have to do it in bash? Can you just use an existing program such as cstream?
cstream meets your goal of a bandw …
0
votes
Bash script for manual routes and default gateway problem
grep will return 0 if it matches the pattern, so you need to test for $ppp-check -eq 0.
You can simplify your test a little bit:
if grep -q ppp0 /proc/net/dev ; then
# I …
3
votes
Problem in running a script
If your script needs no other arguments, a quick and dirty way do to it is to put
eval "$@"
at the start of your script. This will evaluate the command line argume …
1
vote
Executing for-each in bash
As other's have said, xargs(1) is what you want, but it is not always suitable. Most often when it has failed for me, it was when I wanted to run a shell function. xargs runs an executable command. …
