mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-03-13 03:12:21 +01: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
|
|
}
|