2015-08-18 02:53:45 +00:00
|
|
|
# Copies the pathname of the current directory to the system or X Windows clipboard
|
2013-04-08 20:11:22 +00:00
|
|
|
function copydir {
|
2015-08-18 02:53:45 +00:00
|
|
|
emulate -L zsh
|
|
|
|
print -n $PWD | clipcopy
|
2015-10-04 07:42:24 +00:00
|
|
|
}
|