1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 11:24:56 +02:00

Merge pull request #760 from TiredSounds/fix_xargs_find

Change 'ls' example for xargs page to 'find -name'
This commit is contained in:
Leandro Ostera 2016-02-06 03:06:29 +01:00
commit 50e21bec18

View file

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