I'd like to count all the ordinary file on home directory with commands:
$ find ~ -type f | xargs echo | wc -w
xargs: unmatched single quote; by default quotes are special to xargs unless you use the -0 option
It prompts
xargs: unmatched single quote; by default quotes are special to xargs unless you use the -0 option
What's the problem with usage?