#! /bin/bash

#This document contains an example of a shell script that adds a line of text into an existing 
#file using shell script.
#Say I want to append a line of text 'This is a line of text to append' to a file called orig.txt.

echo 'This is a line of text to append' >> orig.txt.
