Update README.md

This commit is contained in:
Michiel Borkent 2019-11-08 20:23:43 +01:00 committed by GitHub
parent 8703ff9f66
commit 070220da70
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -508,6 +508,12 @@ Then run:
Here's a gallery of more useful examples. Do you have a useful example? PR
welcome!
### Delete a list of files returned by a Unix command
```
find . | grep conflict | bb -i '(doseq [f *in*] (.delete (io/file f)))'
```
### Shuffle the lines of a file
``` shellsession