diff --git a/pages/common/pwd.md b/pages/common/pwd.md index 9b63a59326..0fe2257248 100644 --- a/pages/common/pwd.md +++ b/pages/common/pwd.md @@ -10,3 +10,7 @@ - Print the current directory, and resolve all symlinks (i.e. show the "physical" path): `pwd -P` + +- Print the current logical directory: + +`pwd -L` diff --git a/pages/linux/jobs.md b/pages/linux/jobs.md index 5d09dddf70..3a075749a5 100644 --- a/pages/linux/jobs.md +++ b/pages/linux/jobs.md @@ -2,7 +2,7 @@ > Shell builtin for viewing information about processes spawned by the current shell. > Options other than `-l` and `-p` are exclusive to `bash`. -> More information: . +> More information: . - View jobs spawned by the current shell: diff --git a/pages/linux/pwd.md b/pages/linux/pwd.md deleted file mode 100644 index 68694b8964..0000000000 --- a/pages/linux/pwd.md +++ /dev/null @@ -1,16 +0,0 @@ -# pwd - -> Print name of current/working directory. -> More information: . - -- Print the current directory: - -`pwd` - -- Print the current directory, and resolve all symlinks (i.e. show the "physical" path): - -`pwd --physical` - -- Print the current logical directory: - -`pwd --logical`