some terminal keyboard shortcuts
I'd be interested to hear if there's anything super important I missed, obviously there are 1000 readline shortcuts and there's no space for that but there's maybe space for 1 more thing
I'd be interested to hear if there's anything super important I missed, obviously there are 1000 readline shortcuts and there's no space for that but there's maybe space for 1 more thing
Comments
Saves typing in credentials […]
Sending a KILL signal to a process to end it is bad practice. It doesn't allow the process to gracefully shut down, close any open files, write out any data in buffer to disk, among others.
I always use -XCPU instead.
It tells the process that it's exceeded its allotment […]
It might be worth mentioning `disown` in the `Ctrl-z` note, as it can be useful if you started […]
Maybe Ctrl + \ is worth a mention? As a SIGQUIT
While Ctrl + Z being explicitly SIGSTOP.
While... Ctrl + D not being a signal at all...
Ctrl + R
I use it all the time to search command history. Much faster than pressing the up arrow until whatever I was looking for turns up.
Oh! and `\\`, also good for line continuations, but also for quoting single characters, e.g. ` `.
https://www.cyberciti.biz/faq/unix-linux-killall-command-examples-usage-syntax/