importpw / path

Path string manipulation functions for shell scripts

Home Page:https://import.pw/path

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

path

Path string manipulation functions for shell scripts.

API

path_resolve "$input"

#!/usr/bin/env import
import "path"

echo "pwd is: $(pwd)"

path_resolve ".."
# /tmp

path_normalize "$input"

#!/usr/bin/env import
import "path"

path_normalize "/foo/./bar/.."
# /foo

path_pretty "$input"

#!/usr/bin/env import
import "path"

export HOME=/home/user

path_pretty "/home/user/file.txt"
# ~/file.txt

path_pretty "/home/other/file.txt"
# /home/other/file.txt

About

Path string manipulation functions for shell scripts

https://import.pw/path

License:MIT License


Languages

Language:Shell 95.1%Language:Dockerfile 4.9%