Browse Source

Change 'ls' example for xargs page to 'find -name'

TiredSounds 9 years ago
parent
commit
0419ff65ec
1 changed files with 1 additions and 1 deletions
  1. 1 1
      pages/common/xargs.md

+ 1 - 1
pages/common/xargs.md

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