I have file.txt with command stored in one line (this command is valid when running in console) and I want to execute it in one line with sh like
cat file.txt | eval
what is missing? any protips?
and what if I have file with many commands (one for each line) and I want to execute only one command (one whole line)? my first idea is:
head -n5 | tail -n1 | eval