Ben Chuanlong Du's Blog

It is never too late to learn.

Tips on Fd

Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!

https://github.com/sharkdp/fd

wajig install fd-find

The install binary is fdfind.

Example Usages

  1. Find all directories under $dir.

    fdfind --type d . $dir

  2. Find all files under $dir.

    fdfind --type f --print0 . $dir

Comments