1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-10-28 17:19:47 +01:00

pwd: add Dutch translation (#13682)

This commit is contained in:
Sebastiaan Speck 2024-09-21 19:01:14 +02:00 committed by GitHub
parent 46e0a4b521
commit 6c0d7d9fff
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 28 additions and 0 deletions

12
pages.nl/common/pwd.md Normal file
View file

@ -0,0 +1,12 @@
# pwd
> Print de naam van de huidige/werkdirectory.
> Meer informatie: <https://www.gnu.org/software/coreutils/pwd>.
- Print de huidige directory:
`pwd`
- Print de huidige directory en los alle symlinks op (d.w.z. toon het "fysieke" pad):
`pwd -P`

16
pages.nl/linux/pwd.md Normal file
View file

@ -0,0 +1,16 @@
# pwd
> Print de naam van de huidige/werkdirectory.
> Meer informatie: <https://www.gnu.org/software/coreutils/pwd>.
- Print de huidige directory:
`pwd`
- Print de huidige directory en los alle symlinks op (d.w.z. toon het "fysieke" pad):
`pwd --physical`
- Print de huidige logische directory:
`pwd --logical`