Created
September 30, 2019 00:56
-
-
Save henri/90571aedf36cbc89d3160ec705279733 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks person!!