mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-04-03 04:20:01 +02:00
7 lines
138 B
Bash
7 lines
138 B
Bash
if [[ $(uname -s) != 'Darwin' ]]; then
|
|
alias pbcopy='xclip -selection clipboard'
|
|
fi
|
|
|
|
function copydir {
|
|
pwd | tr -d "\r\n" | pbcopy
|
|
}
|