diff --git a/pages.nl/common/realpath.md b/pages.nl/common/realpath.md new file mode 100644 index 000000000..5246c6bc7 --- /dev/null +++ b/pages.nl/common/realpath.md @@ -0,0 +1,24 @@ +# realpath + +> Toon het opgeloste absolute pad voor een bestand of map. +> Meer informatie: . + +- Toon het absolute pad voor een bestand of map: + +`realpath {{pad/naar/bestand_of_map}}` + +- Vereis dat alle padcomponenten bestaan: + +`realpath --canonicalize-existing {{pad/naar/bestand_of_map}}` + +- Los ".." componenten op voordat symlinks worden gevolgd: + +`realpath --logical {{pad/naar/bestand_of_map}}` + +- Schakel symlink-uitbreiding uit: + +`realpath --no-symlinks {{pad/naar/bestand_of_map}}` + +- Onderdruk foutmeldingen: + +`realpath --quiet {{pad/naar/bestand_of_map}}`