Merge pull request #760 from TiredSounds/fix_xargs_find

Change 'ls' example for xargs page to 'find -name'
waldyrious/alt-syntax
Leandro Ostera 2016-02-06 03:06:29 +01:00
commit 50e21bec18
1 changed files with 1 additions and 1 deletions

View File

@ -12,4 +12,4 @@
- Delete all files that start with 'M':
`ls M* | xargs rm`
`find . -name 'M*' | xargs rm`