How can i write multi-lines in a file called myconfig.conf using BASH.

#!/bin/bash
kernel="2.6.39";
distro="xyz";

echo <<< EOL
line 1, ${kernel}
line 2,
line 3, ${distro}
line 4
line ...
EOL >> /etc/myconfig.conf;
cat /etc/myconfig.conf;
link|improve this question

feedback

3 Answers

up vote 5 down vote accepted

The syntax (<<<) and the command used (echo) is wrong.

Correct would be:

  #!/bin/bash

  kernel="2.6.39"
  distro="xyz"
  cat >/etc/myconfig.conf <<EOL
  line 1, ${kernel}
  line 2, 
  line 3, ${distro}
  line 4 line
  ... 
  EOL 

  cat /etc/myconfig.conf
link|improve this answer
feedback
#!/bin/bash
kernel="2.6.39";
distro="xyz";

cat > /etc/myconfig.conf << EOL
line 1, ${kernel}
line 2,
line 3, ${distro}
line 4
line ...
EOL

this does what you want.

link|improve this answer
+1 for typing faster ;-) – ktf Oct 24 '11 at 12:30
@ktf I was typing not faster, but less letters than you. ^_* – Kent Oct 24 '11 at 12:32
feedback

The heredoc solutions are certainly the most common way to do this. Other common solutions are:

echo 'line 1, '"${kernel}"'
line 2,
line 3, '"${distro}"'
line 4' > /etc/myconfig.conf

and

exec 3>&1 # Save current stdout
exec > /etc/myconfig.conf
echo line 1, ${kernel}
echo line 2, 
echo line 3, ${distro}
...
exec 1>&3  # Restore stdout
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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