🎁 Get the FREE AI Skills Starter Guide β€” Subscribe β†’
BytesAgainBytesAgain
πŸ¦€ ClawHub

Realpath Tool

by @dinghaibin

Resolve relative paths and symbolic links to absolute canonical paths. Use for getting the full, unambiguous file path.

Versionv1.0.0
Downloads420
TERMINAL
clawhub install realpath-tool

πŸ“– About This Skill


name: realpath-tool description: Resolve relative paths and symbolic links to absolute canonical paths. Use for getting the full, unambiguous file path.

Realpath - Absolute Path Resolver

Convert relative paths and symlinks to absolute canonical paths. Useful for scripts that need the full path of files, directories, or symlinked resources.

Usage

realpath-tool [options] 

Options

  • -s: Don't expand symlinks (show logical path)
  • -m: Path doesn't need to exist
  • --relative-to=DIR: Show path relative to DIR
  • Examples

    realpath-tool ./relative/path
    realpath-tool -s symlink_path
    realpath-tool --relative-to=/home file.txt
    

    πŸ’‘ Examples

    realpath-tool ./relative/path
    realpath-tool -s symlink_path
    realpath-tool --relative-to=/home file.txt
    

    βš™οΈ Configuration

  • -s: Don't expand symlinks (show logical path)
  • -m: Path doesn't need to exist
  • --relative-to=DIR: Show path relative to DIR