desc = 'avc analyzer'
parser = argparse.ArgumentParser(description=desc)
parser.add_argument('-c', nargs='?', dest='condition', default='', help='searching condition. ex: -c scontext=radio')
parser.add_argument('-p', nargs='*', dest='prints', default=[], help='elements to print. ex: -p class name')
parsed = parser.parse_args()
참고: https://docs.python.org/2/library/argparse.html#
참고: http://sol9501.blog.me/220187825890 (좋다!)
'<프로그래밍> > ___Python' 카테고리의 다른 글
명령어 실행 및 결과 가져오기 (0) | 2015.03.12 |
---|---|
command 명령어 때리기 (0) | 2014.09.24 |
파이썬. 파일 읽기 (0) | 2014.01.17 |
파이썬. 원하는 확장자의 파일 찾기 (0) | 2014.01.17 |
파이썬. 파이프로 입력 받기 (0) | 2014.01.15 |