"wd"とはどういう意味ですか?

"wd"とはどういう意味ですか?

Emacsバックグラウンドジョブの次の出力で「wd」とはどういう意味ですか?

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

答え1

"作業ディレクトリ"(つまり、の2番目と3番目の文字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)

これUnix/Linuxファイルおよびディレクトリシステムではツリー構造このファイルのコマンドは次のとおりです。絶対パス、で始まるルートディレクトリ木(識別/)、または比較的から始まる西部デジタル(作業リスト)

路線はい内部にディレクトリツリー

dir1 
.. /dir2 

パスです比較的WDへ

しかし、

/home/user1/dir3 

これは絶対パスその部分ルートディレクトリ確認済み目次3目次

内容はにありますユーザー1目次

ユーザー1順番に含めるメインディレクトリに含まれています。ルートディレクトリ→/

関連情報