I would like to write a string into a file but it does not work. I am sure that I miss something trivial. The files do not exist yet. Why does the script below does not write anything in the files? The files are not even created.
#!/bin/bash
j="nch"
temp_dir="~/temp_temp"
echo "$temp_dir/$j"
echo "c'mon" >> "$temp_dir/$j"
echo "c'mon" >> "~/temp_temp/pch"
sh -x script.sh; it shows you what the shell is doing and would help you see what was going wrong. You might also have noted what the firstechogenerated on your screen; that would have pointed you in the right direction too. – Jonathan Leffler May 29 '12 at 16:13