Files
dotfiles/.oh-my-zsh/plugins/copydir/copydir.plugin.zsh
T
2020-05-06 22:06:16 +02:00

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
}