Shell Productivity Tips and Tricks
blog.balthazar-rouberol.com
Shell Productivity Tips and Tricks
1–10 of 97 posts
Re: Shell Productivity Tips and Tricks
#2Process substitution deserves a mention: http://www.tldp.org/LDP/abs/html/process-sub.html
Re: Shell Productivity Tips and Tricks
#3fzf fizzy history search with ctrl-r is my favorite new shell trick. Fzf is a wonderful program
Re: Shell Productivity Tips and Tricks
#4fzf fizzy history search with ctrl-r is my favorite new shell trick. Fzf is a wonderful program
fzf's great. I use it for a quick/easy git branch menu, complete with preview of recent history of each branch: https://pastebin.com/R91bP2qa
Re: Shell Productivity Tips and Tricks
#5I max out my history sizes as well as have bash functions to dump/persist them to time stamped archives on command or on logout.
Re: Shell Productivity Tips and Tricks
#6xargs should be there. The most useful tool IMO.
Re: Shell Productivity Tips and Tricks
#7I max out my history sizes as well as have bash functions to dump/persist them to time stamped archives on command or on logout.
(That’s
export HISTSIZE=
export HISTFILESIZE=
for those wondering how to do it.)Re: Shell Productivity Tips and Tricks
#8Whoever can point me at a robust method to save/restore bash histories of a tmux session would save my life!!! [And yes i use tmux inside tmux]
Re: Shell Productivity Tips and Tricks
#9vi :x
grep -n ... vi +§
Re: Shell Productivity Tips and Tricks
#10xargs should be there. The most useful tool IMO.