Posts

Showing posts with the label find

vim find/replace

:8,20 s/search_term/replace_with/g :%s/foo/bar/gc - search whole doc, ask for confirmation

bash enquiry

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.

bash enquiry

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.