
다양한 프로그램을 출시하고 있어요시냅스 송신기. 편의상 프로그램에추가의이름/태그/태그 등 무엇이든 가능합니다(예: "XXYYZZ").
이것이 가능합니까 (XFCE에서)?
답변1
Synapse에 대해서는 잘 모르지만 애플리케이션에서 시작한다고 가정하면 PATH
다음과 같이 심볼릭 링크를 만들 수 있습니다.
$ echo $PATH # check that ~/bin is in the PATH
...:/home/<user>/bin:...
$ which ls # check where the target program is located
/usr/bin/ls
$ ln -s /usr/bin/ls ~/bin/myls # create a symlink
$ myls # use the new name for the target program
... ls output follows ...
내 생각에는 Synapse도 그것을 찾을 것 같아요.