当前位置: 首页 > 工具软件 > BAT.jl > 使用案例 >

Linux/Windows下利用.bat启动程序

通博实
2023-12-01

一、Linux下的.bat启动程序
1.在程序文件夹下或者其他位置新建一个.txt文件,如test.txt

sudo gedit test.txt

2.文件解锁

sudo chmod 777 test.txt

3.在txt文件中写入启动程序,如python程序testmain.py

python3  /home/test/Demo/testmain.py
  1. 将.txt修改为.bat文件
  2. 启动.bat 文件,在终端进入.bat文件目录,即可启动
./test.bat 

总结: 总体感觉没有方便
二、windows下的.bat运行
1.在桌面新建.txt文件
2.在.txt中加入自己的内容

D:
cd D:\test\Demo
python testmain.py
pause
exit

或者

python d:/文件夹路径/python文件名.py

3.直接双击启动即可

 类似资料: