1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-30 02:35:36 +02:00

pwd: merge with common, jobs: update more information page (#14961)

This commit is contained in:
Managor 2024-11-26 15:24:01 +02:00 committed by GitHub
parent 7b66eb9b4a
commit c94909502c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 5 additions and 17 deletions

View file

@ -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`

View file

@ -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: <https://manned.org/jobs>.
> More information: <https://www.gnu.org/software/bash/manual/bash.html#index-jobs>.
- View jobs spawned by the current shell:

View file

@ -1,16 +0,0 @@
# pwd
> Print name of current/working directory.
> More information: <https://www.gnu.org/software/coreutils/pwd>.
- 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`