This file contains hidden or 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 |
OlderNewer