[problem help] 自己写的shell脚本双击不能启动
Tofloor
poster avatar
harrysong123
deepin
2024-08-16 17:09
Author

自己写的shell脚本双击不能启动

#!/bin/bash
java -jar xxx.jar &

xxx是jar包的名称这个jar包是自己写的一个Java Swing程序

权限已经添加

Reply Favorite View the author
All Replies
Jokul
deepin
2024-08-16 17:16
#1

image.png

双击应该是这样得

你使用 sudo chmod +x ./当前文件名 赋予执行权限了嘛?

Reply View the author
夜行者
deepin
2024-08-16 17:16
#2

用c写一个不好使吗

Reply View the author
harrysong123
deepin
2024-08-16 17:18
#3
夜行者

用c写一个不好使吗

跨平台搞起来快点

Reply View the author
harrysong123
deepin
2024-08-16 17:20
#4
Jokul

image.png

双击应该是这样得

你使用 sudo chmod +x ./当前文件名 赋予执行权限了嘛?

把shell里面的命令复制到终端是正常的

Reply View the author
harrysong123
deepin
2024-08-16 17:20
#5
harrysong123

把shell里面的命令复制到终端是正常的

已经添加执行权限

Reply View the author
Jokul
deepin
2024-08-16 17:23
#6
harrysong123

把shell里面的命令复制到终端是正常的

image.png

右键属性看看是不是可执行文件?

把权限管理里面得允许以程序执行勾上再试试

Reply View the author
lizipeng0013
deepin
2024-08-16 18:23
#7
It has been deleted!
兰蔻
deepin
2024-08-16 20:07
#8

试试:

#!/bin/bash -i
java -jar xxx.jar &
Reply View the author
harrysong123
deepin
2024-08-19 09:13
#9
兰蔻

试试:

#!/bin/bash -i
java -jar xxx.jar &

正解!谢谢大神!

Reply View the author