9
votes
What is your single most favorite command-line trick using Bash?
Here's a couple of configuration tweaks:
~/.inputrc:
"\C-[[A": history-search-backward
"\C-[[B": history-search-forward
This works the same as …
1
vote
bash: get list of commands starting with a given string
A fun way to do this is to hit M-* (Meta is usually left Alt).
As an example, type this:
$ lo
Then hit M-*:
$ loa …
0
votes
Ruby - See if a port is open
Just for completeness, the Bash would be something like this:
$ netcat $HOST $PORT -w 1 -q 0 </dev/null && do_something
-w 1 specifies a ti …
0
votes
sort | uniq | xargs grep … where lines contain spaces
This is a good candidate for awk:
BEGIN { FS="," }
{ split($5,A," "); date[A[0]] = date[A[0]] " " NR }
END { for (i in date) print i ":" date[i] }
Set field …
1
vote
Run a script at unlock?
Reading from this page, it seems like krunner_lock will stay running as long as the screen is locked, so you should …
