一、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
./test.bat
总结: 总体感觉没有方便
二、windows下的.bat运行
1.在桌面新建.txt文件
2.在.txt中加入自己的内容
D:
cd D:\test\Demo
python testmain.py
pause
exit
或者
python d:/文件夹路径/python文件名.py
3.直接双击启动即可