📝 Edit on GitHub
Piping
Sending input to another command.
Send literal output of a file listing command to another.
find . -type f | wc -l
Send the file list to the command.
wc -l $(find . -type f)
Chain more tools
head $(find . -type f ) | less