I am writing a bash script , I used 1 variable in my bash file like below
list=`/home/ea/students'
I wrote below link in my bash but I got error
cat $list /admin.txt
Do you know how can I connect variable and string together?
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.
Firstly you need to use single quotes (‘
'‘) around strings, not backticks (‘`’)To append a string to a variable, do the following:
Demo: