원자의 별칭을 만드는 방법은 무엇입니까?

원자의 별칭을 만드는 방법은 무엇입니까?

리눅스 민트에서는 Atom 명령을 통해 Atom 편집기를 실행할 수 있나요? 나는 노력했다

atom
Command 'atom' is available in '/snap/bin/atom'
The command could not be located because '/snap/bin' is not included in the PATH environment variable.
atom: command not found

답변1

두 가지 솔루션:

  1. /snap/bin귀하에게 디렉토리를 추가했습니다 $PATH. 이렇게 하면 다음 항목에 직접 액세스할 수 있습니다.어느이 디렉토리의 명령.

    PATH=$PATH:/snap/bin
    

    ~/.bashrc(예를 들어, 이 내용은 파일에 저장됩니다.)

  2. 이라는 별칭을 만듭니다 atom. /snap/bin/atom해당 단어를 명령줄에서 명령으로 사용하면 대체됩니다 atom./snap/bin/atom

    alias atom=/snap/bin/atom
    

    (파일에 추가할 수도 있습니다 ~/.bashrc.)

    별칭 대신 간단한 셸 함수를 사용하여 동일한 작업을 수행할 수 있습니다.

    atom () { /snap/bin/atom "$@"; }
    

~/.bashrc새 셸을 시작하면 변경 사항이 활성화됩니다.

관련 정보