%% date:: [[2023-03-23]] %% # [[How to get word count from all files in a directory on terminal]] ```bash find . -type f -exec wc -w {} + | tail -n1 ``` This returns the number of *words*, not characters, in the current directory.