Print awesome artwork in your Linux terminal.

Print some artwork to your terminal with these cool commands. These are excellent ASCII artwork samples that could be very nice to have in your terminal. wget -qO- git.io/burger Here is the output of that one-liner. It looks awesome when printed in the terminal. wget -qO- http://git.io/coffee">git.io/coffee   wget -qO-…

Read More

Read a file from the Internet directly into VIM.

The VI text editor is a very flexible text editor. This can read from STDIN, and this makes it very good to use in a script. But you can also read a file from the Internet. This works in concert with the wget utility. The wget -O- -q command reads…

Read More