I love watch . watch df -h watch ls -sh watch cat file watch nmcli device wifi list watch -n 10 --color curl -s wttr.in
Ask HN: Best Command-Line Applications?
131–140 of 393 posts
Re: Ask HN: Best Command-Line Applications?
#132I became addicted to these great tools all written in Rust: fselect - https://github.com/jhspetersson/fselect ripgrep - https://github.com/BurntSushi/ripgrep exa - https://the.exa.website They are the replacements for traditional find, grep, and ls.
Re: Ask HN: Best Command-Line Applications?
#133For sysadmin needs: - htop (better top) - nload (network traffic visualization) - nano (I know, but works great for simple editing) - curl (http everything tool) - telnet/nc (check listening ports)
Re: Ask HN: Best Command-Line Applications?
#134Earlier quoted context omitted.
I keep a VPS running with Nginx on it for a specific port. Then I forward that port via SSH using remote forwarding to enable this exact functionality. It's free if you've already got a server running.
ngrok is free even if you don't have a server running... and you can tunnel raw TCP. (not affiliated, I just really admire ngrok so I take it personally when people don't use it :))
Re: Ask HN: Best Command-Line Applications?
#135_edit_
oathtool seems promising (needs to be paired with something to manage and crypt the keys tho) http://www.nongnu.org/oath-toolkit/oathtool.1.html
Re: Ask HN: Best Command-Line Applications?
#136Earlier quoted context omitted.
I use git so much that I made these aliases in zsh: alias g="git show" alias gh="git show HEAD" alias gs="git status" alias gl="git log" alias gco="git checkout" alias gd="git diff" alias gbl="git branch -v" alias gbd="git branch -D" alias gri="git rebase --interactive" alias grc="git rebase --continue" alias gra="git rebase --abort" alias gst="git stash" alias gsta="git stash apply" alias gx="gco -- \*; git reset HE…
nice ones! couple from my bash_alias alias ..="cd .." alias ..2="cd ../.." # ... you get the idea, mine goes up to 5 function mkcd () { mkdir -p "$@" && eval cd "\"\$$#\""; } alias h="history|grep"
function up() { cd "$(printf '../'%.0s $(seq 1 "${1:-1}"))" && pwd; } #up 4 goes up 4 directoriesRe: Ask HN: Best Command-Line Applications?
#137great tool for downloading subtitles, sadly it seems unmaintained and sometimes fails to work
rtorrent: https://github.com/rakshasa/rtorrent
my preferred way to download ISOs of Linux distributions
And a +1 for some that were already mentioned: tig, ripgrep, htop, midnight commander
Re: Ask HN: Best Command-Line Applications?
#138rg (ripgrep): https://github.com/BurntSushi/ripgrep I used to use ag (the silver searcher) [1] before, and `ag` was practically a muscle memory to me, but then I came across ripgrep and it was so much faster. I've now installed a static binary of ripgrep in every machine I have SSH access to. [1] https://github.com/ggreer/the_silver_searcher
Re: Ask HN: Best Command-Line Applications?
#139Re: Ask HN: Best Command-Line Applications?
#140 * fish shell
* tmux (multiplexer)
* emacs-nox (non-GUI version)
* mocp (music player)
* w3m (web browser)
* htop (process viewer)