Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- gcc 업데이트
- selinux port 등록
- c3 축 없애기
- grafana dashboard
- c3 second
- c3 초
- regex_search
- snmp
- linux시간으로 변경
- c3 step graph
- 정규식 컴파일
- 백준
- 정규식 활용
- centos pyhon 설치
- subporcess path
- semanage
- influxdb 설치
- 정규식 문자열 출력
- python subprocess
- 1697
- telegraf
- c++ 정규식
- python popen
- g++ 업데이트
- CentOS7
- gcc regex
- python os
- c3 축 가리기
- snmp test
- InfluxDB
Archives
- Today
- Total
리셋 되지 말자
[python 활용] subprocess 활용 본문
프로젝트를 진행하는데, 기본 경로와 이동할 경로들을 따로 제어해야 할 필요가 있는데, 코드 기록용으로 올려봄.
import subprocess
str ="ls"
path = " /"
path2 = "home"
out = subprocess.check_output([str + path + path2], shell=True, encoding='utf-8')
print(out)
str은 명령어이고
path는 경로이다
위처럼 [] 안에 +로 이어붙여서 활용할 수 있다.
'Python' 카테고리의 다른 글
[python 활용]파이썬 모듈로 웹서버 구축하기 (0) | 2020.08.24 |
---|---|
[python 공부] 아스키코드->문자, 문자->아스키코드 (0) | 2020.08.10 |
[python 공부] set의 remove, discard 비교 (0) | 2020.08.10 |
[python 활용] websocket으로 json 송신, 수신 하기 (0) | 2020.04.08 |
[python 활용] subprocess (0) | 2020.03.24 |
Comments