mirror of
https://gitlab.com/linuxstuff/dotfiles.git
synced 2026-08-17 13:59:29 +02:00
6 lines
149 B
Bash
Executable File
6 lines
149 B
Bash
Executable File
# Copies the pathname of the current directory to the system or X Windows clipboard
|
|
function copydir {
|
|
emulate -L zsh
|
|
print -n $PWD | clipcopy
|
|
}
|