From c94909502c45b3beae6e70e1e7f3cea35e28ac82 Mon Sep 17 00:00:00 2001 From: Managor <42655600+Managor@users.noreply.github.com> Date: Tue, 26 Nov 2024 15:24:01 +0200 Subject: [PATCH] pwd: merge with common, jobs: update more information page (#14961) --- pages/common/pwd.md | 4 ++++ pages/linux/jobs.md | 2 +- pages/linux/pwd.md | 16 ---------------- 3 files changed, 5 insertions(+), 17 deletions(-) delete mode 100644 pages/linux/pwd.md 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`