9 lines
157 B
Plaintext
9 lines
157 B
Plaintext
|
#!/usr/bin/env zsh
|
||
|
|
||
|
if [ $# -eq 0 ]; then
|
||
|
xclip -selection c
|
||
|
else
|
||
|
file_type=$(file -b --mime-type "$1")
|
||
|
xclip -selection c -t $file_type < $1
|
||
|
fi
|