Selaa lähdekoodia

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

TiredSounds 9 vuotta sitten
vanhempi
commit
0419ff65ec
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  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`