Programming44 [Python] cmd 명령어 실행 결과 값 가져오는 방법 CMD명령어 결과 값 받는 방법 우리는 간혹 스크립트를 개발하다보면 리눅스에서 cmd결과 값을 가져오고 싶은 경우가 있다. 이럴때는 파이썬을 이용해서 쉽게 가져올 수 있다. python에서 commands API를 쓰면 쉽게 가져올 수 있다. import commands 아래의 예제를 통해 알아 보자. 예제1) commands.getoutput(cmd)을 이용해 MAC주소를 가져오기 #!/usr/bin/python import commands output = commands.getoutput('ifconfig -a eth0 | grep HWaddr | awk \'{print $5}\'') print output 실행을 하면 아래와 같이 명령 수행을 한 결과가 출력이 된다. 예제2) 실행성공 변수도 같이 .. 2018. 11. 29. .gitconfig 설정하기 1. .gitconfig 명령: .gitconfig - git 사용자 계정 및 alias등 설정등을 조절 할 수 있습니다. 편집 방법1vi ~/.gitconfigcs파일 편집하여 git config를 설정 할 수 있습니다. 2. .gitconfig 예시 및 아래의 설정 참조1234567891011121314151617181920212223242526272829[core] filemode = true editor = vim [user] name = musclebear email = musclebear@도메인 [color] ui = auto [color "branch"] current = yellow bold local = green bold remote = cyan bold [alias] co = chec.. 2018. 11. 22. 이전 1 ··· 5 6 7 8 다음 반응형