Skip to content

Instantly share code, notes, and snippets.

View naanadr's full-sized avatar

Maria Fernanda naanadr

View GitHub Profile
# macOS xargs has no -d (delimiter) option. But you can use BASH to do something similar :
cat myfile.txt | grep \n | while read -r line ; do echo "$line"; done