4
votes
is bash getopts function destructive to the command-line options?
Yes, just reset OPTIND afterwards.
#!/bin/bash
set -- -1
while getopts 1 opt; do
case "${opt}" in
1) echo "Worked!";;
*) exit 1;
esac
done
OPTIND=1
set -- …
6
votes
How to terminate script’s process tree in Cygwin bash from bash script
/bin/kill (the program, not the bash builtin) interprets a negative PID as “kill the process group” which will get all the children too.
Changing
kill %1
…
1
vote
How do I apply a shell command to many files in nested (and poorly escaped) subdirectories?
find . -name '*.foo' -print0 | xargs -0 sh -c 'for F in "${@}"; do ...; done' "${0}"
…
1
vote
Executing commands containing space in bash
You can replace your script with the command
sh cmd
The shell’s job is to read commands and run them! If you want output/progress indicators, run the shell in verb …
2
votes
1
vote
How can I re-add a unicode byte order marker in linux?
For a general-purpose solution—something that sets the correct byte-order mark regardless of whether the file is UTF-8, UTF-16, or UTF-32—I would use vim’s 'bomb' option:
…
