Welcome to the Linux Foundation Forum!
ssh read output
in Command Line
With the help of ssh i would like to execute script and redirect the output in my local file
$ssh -i keypair1.pem [email protected] -C sh /mnt/monitor.sh >> /root/imgManagementOutput.txt
source: monitor.sh
echo `cat /mnt/imageOutput.txt`
Source: /mnt/imageOutput.txt
line1
line2
Expected Output:
line1
line2
Actual Output:
line1 line2
I am looking for the output should be as "Expected Output" as it is not in a single line...
0
Comments
Why are you echoing the output of cat? (Which itself is basically "echoing" the text file?)
--
Patrick