I’m trying to read a file which holds a single number in ash shell. The bash way of doing so
ARG=`cat /tmp/tempfile`
doesn’t work and I get that ARG doesn’t hold anything after this line of code.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
try to surround it with quotes to have it not stopped at the first newline:
or
or