how would you store a file using a cat
command in a file,
say $ENTRY "Input Text $ENTRY cat > $ENTRY /home/me/input_text
Asked
Active
Viewed 32 times
1 Answers
1
cat
is the wrong tool for the job. cat
is for reading files. You want echo $ENTRY > file
.

psusi
- 37,551