dotfiles/.config/shell/bin/copy-path
2024-09-08 19:56:59 -07:00

12 lines
207 B
Bash
Executable file

#!/bin/sh
# copies the passed arguments to the clipboard
CLIPBOARD_MANAGER="${CLIPBOARD_MANAGER:-xsel -b}"
if [ $# -eq 0 ]; then
set -- "$(pwd)"
fi
for f; do
realpath "$f"
done | $CLIPBOARD_MANAGER