­
:::: MENU ::::
Monthly Archives: April 2015

wget – downloading whole website

1
2
3
4
5
6
7
8
9
10
$ wget \
     --recursive \
     --no-clobber \
     --page-requisites \
     --html-extension \
     --convert-links \
     --restrict-file-names=windows \
     --domains website.org \
     --no-parent \
         www.website.org/tutorials/html/

source: Linux Journal


Removing .git / .svn directories

Sometimes you have to remove directories from your VCS tool.

1
find . -name .svn -exec rm -rf {} \;

Listing affected directories

1
find . -name .svn -exec echo {} \;