coreutils commands: move pages to common/ folder (#2442)

This commit is contained in:
Felix Yan
2018-10-17 01:29:50 +08:00
committed by Starbeamrainbowlabs
parent 9ef7ec119a
commit 72b4f22ff9
36 changed files with 4 additions and 23 deletions

23
pages/common/realpath.md Normal file
View File

@@ -0,0 +1,23 @@
# realpath
> Display the resolved absolute path for a file or directory.
- Display the absolute path for a file or directory:
`realpath {{path/to/file_or_directory}}`
- Require all path components to exist:
`realpath --canonicalize-existing {{path/to/file_or_directory}}`
- Resolve ".." components before symlinks:
`realpath --logical {{path/to/file_or_directory}}`
- Disable symlink expansion:
`realpath --no-symlinks {{path/to/file_or_directory}}`
- Suppress error messages:
`realpath --quiet {{path/to/file_or_directory}}`