"wd"은(는) 무슨 뜻인가요?

"wd"은(는) 무슨 뜻인가요?

Emacs 백그라운드 작업의 다음 출력에서 ​​"wd"는 무엇을 의미합니까?

$jobs
[3]-  Stopped emacs -nw new\ file  (wd: ~/dirlinks/cs/computer_system/composition/hardware)

답변1

"작업 디렉토리"(즉, 의 두 번째 및 세 번째 문자 pwd). cd셸의 다른 곳에서 작업을 수행 한 경우 백그라운드 작업이 시작된 디렉터리를 상기시켜 줍니다 .

답변2

명령 터미널항상 상관관계가 있다작업 목록서부 디지털, 어느 것이명령을 실행할 디렉터리.

$ ls ## list the working directory file of "wd → working directory"

$ ls dir1 ## directory files list dir1, contained in wd

$ ls ../dir2 ## directory files list dir2, contained in the parent directory of wd

$ ls /home/user1/dir3 ## list of files identified by the absolute path dir3

$ nano file.ext ## edit, if exist, or create, if not exist, the file.ext of the working directory

$ pwd ## shows the absolute path to the working directory of the command terminal 

$ cd dir1 ## changes the working directory by the directory 'dir1' contained in it

$ cd .. ## changes the working directory to its parent directory (the first on the path to the root)

이것유닉스/리눅스파일 및 디렉토리 시스템에는트리 구조이 파일에 대한 명령은 다음과 같습니다.절대 경로, 로 시작하는루트 디렉토리나무의 (로 식별/), 또는비교적, 에서 시작서부 디지털(작업 목록)

노선내부에디렉토리 트리.

dir1 
.. /dir2 

경로입니다비교적WD로

하지만

/home/user1/dir3 

이것은절대 경로그 부분루트 디렉토리확인됨목차 3목차

내용은 에 있습니다사용자 1목차

사용자 1차례로 포함메인 디렉토리에 포함되어 있습니다.루트 디렉토리 → /

관련 정보