Skip to content

Instantly share code, notes, and snippets.

@henri
Created September 30, 2019 00:56
Show Gist options
  • Save henri/90571aedf36cbc89d3160ec705279733 to your computer and use it in GitHub Desktop.
Save henri/90571aedf36cbc89d3160ec705279733 to your computer and use it in GitHub Desktop.
# 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
@naanadr
Copy link

naanadr commented Mar 23, 2021

Thanks person!!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment