shell 按行讀取文件的內容
阿新 • • 發佈:2019-04-24
echo bsp compile status odin pan div true mpi
test.py:
#coding=utf-8 import subprocess compilePopen = subprocess.Popen(‘gcc haha‘,shell=True,stderr=subprocess.PIPE) compilePopen.wait() print(‘the status code is:‘,compilePopen.returncode) with open(‘log‘,‘w‘) as object: object.write(compilePopen.stderr.read())
test.sh:
#!/bin/bashwhile read str; do echo $str done <readme.txt
sudo chmod +x test.sh
./test.sh
輸出:
#coding=utf-8 import subprocess compilePopen = subprocess.Popen(‘gcc haha‘,shell=True,stderr=subprocess.PIPE) compilePopen.wait() print(‘the status code is:‘,compilePopen.returncode) with open(‘log‘,‘w‘) as object: object.write(compilePopen.stderr.read())
shell 按行讀取文件的內容