Could you please help me how to grep two strings (or the whole lines) from one file and write them on the same line in output file?
grep -e "string1 string2" inputfile > output.txt doesn't work
for one string it works:
grep -e "string1" inputfile > output.txt
thx!