write bash script code example
Example 1: bash write
# syntax (note: the -e switch is to allow for backslash escapes)
# echo -e "<string-to-append>" >> <file-to-append-to>
# example
echo -e "Hello there, new line!" >> RandomWorld.txt
# -----------------------------------------------
# In order to see the effect of -e, use the following string:
# "Hello there,\n new line!"
Example 2: how to create file in bash script
to make file in a folder in git bash script we use the command line called touch
steps to follow
1 enter in to that folder
2 write "touch fileName"
3 press enter
eg i want to create a file called index.js
touch index.js