Bash에서 Emacs 열기

MD Aminul Islam 2023년6월20일
  1. 시스템에 EMACS 설치
  2. Bash 내에서 EMACS 열기
Bash에서 Emacs 열기

이 기사에서는 Bash에서 Emacs를 여는 방법을 보여줍니다. 또한 Emacs 텍스트 편집기를 설치하는 방법에 대해서도 논의할 것입니다.

시스템에 EMACS 설치

시스템에 Emacs가 없다고 가정합니다. 한 줄의 코드를 통해 시스템에 쉽게 설치할 수 있습니다.

명령:

sudo apt-get install emacs

Bash 내에서 EMACS 열기

이제 설치 부분이 끝났습니다. 이 텍스트 편집기를 열 차례입니다.

Emacs를 열 수 있는 많은 실행 옵션이 있습니다. 이 문서에서는 이 텍스트 편집기를 Linux 셸 터미널 내에서만 엽니다.

명령:

emacs -nw

-nw창 없음을 의미합니다. 이것은 교차 창 없이 Emacs 텍스트 편집기를 여는 것을 방지하는 플래그/옵션입니다.

대형 형식의 emacs -nw 명령이 있습니다.

명령:

emacs --no-window-system

파일을 포함하여 이 텍스트 편집기를 열어야 하는 경우 다음 명령을 사용할 수 있습니다.

명령:

emacs file.txt -nw

위의 명령에서 file.txt라는 텍스트 파일로 EMACS 텍스트 편집기를 열었습니다.

이 기사에서 사용된 모든 코드는 Bash로 작성되었습니다. Linux Shell 환경에서만 실행할 수 있습니다.

MD Aminul Islam avatar MD Aminul Islam avatar

Aminul Is an Expert Technical Writer and Full-Stack Developer. He has hands-on working experience on numerous Developer Platforms and SAAS startups. He is highly skilled in numerous Programming languages and Frameworks. He can write professional technical articles like Reviews, Programming, Documentation, SOP, User manual, Whitepaper, etc.

LinkedIn