0
votes
Bash or Ksh ?
I don't have experience with ksh, but I have used both bash and zsh. I prefer zsh over bash because of its support for very powerful file globbing, variable expansion modifiers, and faster tab com …
4
votes
In bash, how to make control-delete mean kill-word?
On my machine, pressing Ctrl-V, Ctrl-Delete outputs this:
^[[3;5~
The ^[ escape character can be replaced with \e, so you can then use bind like this …
8
votes
Removing created temp files in unexpected bash exit
I usually create a directory in which to place all my temporary files, and then immediately after, create an EXIT handler to clean up this directory when the script exits.
TMPDIR=`m …
