1
vote
Bash autocompletion in Emacs shell-mode
Like Matli said, it is not an easy task, since bash is started with --noediting and TAB is bound to comint-dynamic-complete.
One could possibly rebind TAB to self-insert-command in shell-co …
-1
votes
Tricky brace expansion in shell
Taking inspiration from the answers above:
$ TEST=quick,man,strong
$ touch $(eval echo {$TEST}ly)
…
0
votes
How to attach a file using mail command on Linux?
My answer needs base64 in addition to mail, but some uuencode versions can also do base64 with -m, or you can forget about mime and use the plain uuencode output...
FROM=me@mydom …
