As a follow up on my recent rsync on ESXi 5.1 post, as – when rsync in ESXi terminates the hard way because of a lost SSH connection – rsync can leave “hidden” files behind.
A small script that recursively shows the hidden files (those starting with a dot) starting from the current directory:
find . -iname ".*"
More of those (including deleting them, filtering for only files or only directories, etc) are at Linux / UNIX: Bash Find And Delete All Hidden Files Directories.
Note: don’t try to outsmart using something like piping through grep "\/\." as that will also match files who’s parent directories are hidden.
–jeroen
via:
- ESXi 5.1 and rsync – damiendebin.net. « The Wiert Corner – irregular stream of stuff.
- Linux / UNIX: Bash Find And Delete All Hidden Files Directories.
Filed under: *nix, Apple, ESXi4, ESXi5, ESXi5.1, ESXi5.5, Linux, Mac, MacBook, MacBook Retina, MacBook-Air, MacBook-Pro, OS X, OS X Leopard, OS X Lion, OS X Maverick, OS X Mountain Lion, OS X Snow Leopard, OS X Tiger, Power User, SuSE Linux, VMware, VMware ESXi Tagged: hidden files, rsync