My system is CentOS 6.5 When I want to use backtick to run the commands in filename, i got the result below:
the file's content is below:
[liu-uil@~ 15:54:16]$cat test
echo 1;
echo 2;
echo 3;
[liu-uil@~ 15:54:18]$`cat test`
1; echo 2; echo 3;
[liu-uil@~ 15:54:24]$
the commands after the first echo are all treated as text plain, I don't know why? Could somebody kindly explain this to me? Thank you very much!