Centos7 더블클릭으로 쉘 스크립트 실행하는법
Centos 의 버전7 부터는 버전 6 과는 다르게
, 스크립트를 더블클릭 해도 스크립트를 바로 실행하지 않고 별도의 어플리케이션으로 연결된다.
더블클릭으로 쉘 스크립트를 실행하기 위해서는 바탕화면에 *.desktop 파일을 생성한다.
gedit 혹은 vi로 열어서 다음과 같이 수정한다.
#!/usr/bin/env xdg-open
[Desktop Entry]
Name=SmartGit
Comment=Git launcher
Exec=/develop/smartgit/bin/smartgit.sh <--- 더블클릭으로 실행할 스크립트를 지정.
Icon=/develop/smartgit/bin/smartgit-32.png
Terminal=false
Type=Application
|
저장후, 바탕화면에 생성된 파일과 그 속성을 보면 다음과 같다.
이제 해당 파일을 더블클릭하면 , 바로 쉘 스크립트를 실행하게 된다.
No comments:
Post a Comment