mirror of
https://github.com/Kuingsmile/PicList.git
synced 2025-01-23 06:38:13 -05:00
16 lines
577 B
Bash
16 lines
577 B
Bash
# from https://github.com/favers/vscode-qiniu-upload-image/blob/master/lib/linux.sh
|
|
|
|
#!/bin/sh
|
|
|
|
# require xclip(see http://stackoverflow.com/questions/592620/check-if-a-program-exists-from-a-bash-script/677212#677212)
|
|
command -v xclip >/dev/null 2>&1 || { echo >&1 "no xclip"; exit 1; }
|
|
|
|
# write image in clipboard to file (see http://unix.stackexchange.com/questions/145131/copy-image-from-clipboard-to-file)
|
|
if
|
|
xclip -selection clipboard -target image/png -o >/dev/null 2>&1
|
|
then
|
|
xclip -selection clipboard -target image/png -o >$1 2>/dev/null
|
|
echo $1
|
|
else
|
|
echo "no image"
|
|
fi |