1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-25 00:55:38 +02:00

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

This commit is contained in:
TiredSounds 2016-02-04 21:59:35 +00:00
parent 08d9c7f342
commit 0419ff65ec

View file

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