Ask HN: Share your best terminal tricks

2 points by zabana ↗ HN

3 comments

[ 3.9 ms ] story [ 16.3 ms ] thread
Ctrl-D = EoF = Closes the term / tmux
Stuck in a broken remote session?

  <enter>
  ~.<enter>
want to use different command on last argument?

  less /path/to/some.file
  vim !$
piping and sudo

  sudo sh -c "my command | jq > meh.txt"
To clear only the contents of a file (my most used and most favourite one esp with application logs)

cat /dev/null > any_file.txt