15 April 2012

You can use wget to download different web content. Sometimes in your bash scripts you need to do it in silent mode, so that there won't be printed any download information.

Source code viewer
  1. wget -qO- 'browse-tutorials.com'
Programming Language: Bash