we need help with the syntax with this shell script,
if you could create this shell script we can donate to a charity etc.
we need to set up a directory called user3
inside directory user3 we need to create the following files :
afile, anyfile, anotherfile, afiletest, bfile. bfiletest, cfile, cfiletest,
the script will give the user a menu, with options in order to assist with the backup of files,
choices given to the user are Backup all files or Backup selected files.
if user chooses to backup all files then the files should be backed up to a new subdirectory called AllBackup which should
be created within your script.
if the user chooses to backup selected files then they must input files to be backed up in a specific format eg all files
starting with letter "a", or all files ending with "test". these files should then be backed up to a new subdirectory
called SelectBackUp, which should be created within your script.
for this assignment you will need to make use of loops and if statements.
you may also rrequire some nesting of control structures.