I want to run multiple commands on command line in linux. Here's the example:
abc.txt: hello
$ test 'cat abc.txt'
Here test is a command which runs agains the value of abc.txt and abc.txt is the file which have some value.
How can i print the value from the file and run the test command ?