0

how would you store a file using a cat command in a file, say $ENTRY "Input Text $ENTRY cat > $ENTRY /home/me/input_text

thatguy
  • 33

1 Answers1

1

cat is the wrong tool for the job. cat is for reading files. You want echo $ENTRY > file.

psusi
  • 37,551