vim find/replace Get link Facebook X Pinterest Email Other Apps September 17, 2016 :8,20 s/search_term/replace_with/g :%s/foo/bar/gc - search whole doc, ask for confirmation Read more
bash enquiry Get link Facebook X Pinterest Email Other Apps August 28, 2016 Q: bash command that'll remove all empty folders in the present directory A: find . -type d -empty -delete find finds, . specifies the present folder, -type d specifies directories (to avoid deleting empty files), -empty specifies empty, -delete instructs to delete. duh. Read more
bash enquiry Get link Facebook X Pinterest Email Other Apps August 28, 2016 Q: bash command that'll remove all empty folders in the present directory A: find . -type d -empty -delete find finds, . specifies the present folder, -type d specifies directories (to avoid deleting empty files), -empty specifies empty, -delete instructs to delete. duh. Read more