You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, getjobinfo pulls the whole XML log when querying a specific job id, however, sometimes you're really only looking for the job script. Therefore, getjobinfo should have the ability to pull specific tags from the logs.
Might look like something like the following: getjobinfo tag -n <...> - will need to enable getjobinfo to be called without needing a sub-command to be invoked. @click.group(invoke_without_command=True) should do the trick.
The text was updated successfully, but these errors were encountered:
Currently,
getjobinfo
pulls the whole XML log when querying a specific job id, however, sometimes you're really only looking for the job script. Therefore,getjobinfo
should have the ability to pull specific tags from the logs.Might look like something like the following:
getjobinfo tag -n <...>
- will need to enablegetjobinfo
to be called without needing a sub-command to be invoked.@click.group(invoke_without_command=True)
should do the trick.The text was updated successfully, but these errors were encountered: