Hacker News new | ask | show | jobs
by beothorn 3354 days ago
I don't remember where did I get this from but it is a cool thing to add to your .bashrc

  #!/bin/bash
  #teach you some new commands every time you open a new terminal
  echo 'Did you know that:'
  echo $( whatis $(ls /bin | shuf | head -1))
  echo $( whatis $(ls /sbin | shuf | head -1))
  echo $( whatis $(ls /usr/bin | shuf | head -1))
edit: formatting