Hi, folks!
See the examples:
bash$ X="ls"; $X
file1 file2 file3
*** Works correctly!
bash$ X="ls | wc"; $X
ls: |: No such file or directory
ls: wc: No such file or directory
*** Doesn't work!
How to make the last command work correctly as first?
Thanks in advance!
Reginald0