#! /bin/sh

# this will only work if mobile has write
# access to the files you wish to delete

# add files to delete after the 
# rm command with a space between
# each file name. Put file names 
# with spaces inside single quotes.
# example (remove the '#' sign):

# rm file1 'file 2' file3

# add directories to delete here
# same rules as above. Example:

# rm -rf directory1 'directory 2'

 
 