added back the "--text_cmd" command argument parsing

LT1AB
Eric J. Fielding 2019-05-08 17:07:16 -07:00
parent 50703cb817
commit d267903d66
1 changed files with 2 additions and 0 deletions

View File

@ -24,6 +24,8 @@ def createParser():
help='output directory which will be used for unpacking.')
parser.add_argument('-s', '--segment', dest='segment', type=str, default='1',
help='segment of the UAVSAR stack to prepare. For "s2" use "2", etc. Default is "1" ')
parser.add_argument('-t', '--text_cmd', dest='text_cmd', type=str, default='source ~/.bash_profile;',
help='text command to be added to the beginning of each line of the run files. Default: source ~/.bash_profile;')
return parser