linux append to file code example
Example 1: add a line at the end of a file linux
echo 'text here' >> filename
Example 2: bash add text to file
echo "hello world" >> my_file.txt
Example 3: bash append file
echo -e "<string-to-append>" >> <file-to-append-to>
echo -e "Hello there, new line!" >> RandomWorld.txt
"Hello there,\n new line!"
Example 4: bash append to a file
command >> output_file
Example 5: append filename at the beggining linux
for file in *.shp; do echo $(basename $file .shp)_poly.shp; done