This commit is contained in:
Marc Beninca 2025-07-27 19:00:03 +02:00
parent e637687ac4
commit c648265e3b
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F
2 changed files with 11 additions and 9 deletions

11
sh/fs/ln.sh Normal file
View file

@ -0,0 +1,11 @@
# ln
#| ln
rwx_link() {
local link="${1}"
local target="${2}"
ln \
--symbolic \
"${target}" \
"${link}"
}

View file

@ -2,15 +2,6 @@
# │ util │
# ╰──────╯
rwx_link() {
local link="${1}"
local target="${2}"
ln \
--symbolic \
"${target}" \
"${link}"
}
rwx_list_block_devices() {
lsblk \
--noempty \