#!/bin/bash #1 读取文件 并显示 cat state.txt | while read line do echo $line done #2 读取文件 并显示 cat state.txt | while read line; do echo $line; done #3 读取一个文件内容到一个变量中 var=$(cat state.txt) echo $var #4 根据变量进行判读 if [ $var==0 ]; then echo "no run" elif [ $var==1 ]; then echo "run" else echo "error" fi
运行python的时候将程序PID写入文件,以方便kill程序。
import os def writePid(): pid = str(os.getpid()) f = open(‘athena.pid‘, ‘w‘) f.write(pid) f.close()
原文地址:https://www.cnblogs.com/adong7639/p/9345860.html
时间: 2024-10-12 19:55:43