“wd”是什么意思?

“wd”是什么意思?

在 emacs 后台作业的以下输出中,“wd”是什么意思?

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

答案1

“工作目录”(即 的第二个和第三个字母pwd)。这会提醒您后台作业启动的目录,以防您cd在 shell 的其他位置执行过操作。

答案2

A命令终端总是有一个关联的工作目录西数, 哪一个是执行命令的目录

$ 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)

UNIX/Linux文件和目录系统有一个树结构这些文件的命令为绝对路径,这开始于根目录树的(标识为/), 或者相对的, 开始于西数(工作目录)

航线路径在里面目录树

dir1 
.. /dir2 

是路线相对的至 WD

尽管

/home/user1/dir3 

它是一个绝对路径那部分的根目录标识了目录3目录

内容在用户1目录

用户1依次包含在主目录,它包含在根目录 → /

相关内容