Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

how can I read a text file and save it to a variable in bash ? my code is here :

#!/bin/bash
TEXT="dummy"
echo "Please, enter your project name"
read PROJECT_NAME  
mkdir $PROJECT_NAME  
cp -r -f /home/reza/Templates/Template\ Project/* $PROJECT_NAME  
cd $PROJECT_NAME/Latest  
TEXT = `cat configure.ac `  ## problem is here   !!!  
CHANGED_TEXT=${TEXT//ProjectName/$PROJECT_NAME}
echo $CHANGED_TEXT
share|improve this question

2 Answers

up vote 6 down vote accepted

The issue is that you have an extra space. Assignment requires zero spaces between the = operator. However, with bash you can use:

TEXT=$(<configure.ac)

You'll also want to make sure you quote your variables to preserve newlines

CHANGED_TEXT="${TEXT//ProjectName/$PROJECT_NAME}"
echo "$CHANGED_TEXT"
share|improve this answer
it worked but it has a problem :the lines are missing .all the characters become in just 1 line like this what I should do ? – reza Feb 5 '12 at 2:42
1  
@reza did you quote your variables like I mentioned? – SiegeX Feb 5 '12 at 3:16

Try

TEXT=`cat configure.ac`

That should work.

Edit:

To clarify, the difference is in the spacing: putting a space after TEXT causes bash to try to look it up as a command.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.