I am trying to use a shell script which contains the following command :
(./rstrings $INPUT ; cat $INPUT ) | sha1sum
When I run the above command in the terminal, i get the desired output, whereas in my shell script, the same command gives me command not found. Below is the line in the script creating issues :
sha1 = `(./rstrings $INPUT ; cat $INPUT ) | sha1sum`
rstrings is a c executible...
I am new to shell scripting and any help would be appreciated!