rwx/sh/fs/ln.sh

12 lines
116 B
Bash
Raw Normal View History

2025-07-27 19:00:03 +02:00
# ln
#| ln
rwx_link() {
local link="${1}"
local target="${2}"
ln \
--symbolic \
"${target}" \
"${link}"
}