I have a text file with various entries in it. Each entry is ended with line containing all asterisks.
I\'d like to use shell commands to parse this file and assign each
Try putting double quotes around the command.
#!/bin/bash for error in "`python example.py | sed -n '/.*/,/^\**$/p'`" do echo -e $error echo -e "\n" done