如何执行在Linux上运行的应用程序

2025-05-24 07:38:20
推荐回答(3个)
回答(1):

首先把你的应用程序加可以执行文件
chmod +x test
然后后台运行
./test &

回答(2):

chmod +x yourfile
./yourfile

回答(3):

chmod +777 yourfile
./yourfile