#!/bin/bash set -e file= cleanup_cb() { [ -n "$file" ] && rm $file; } trap cleanup_cb EXIT file=$(mktemp --suffix=.png) scrot -s $file shareit $file