Você pode tentar fazer algo assim
gitk --all . & # You run the gitk and go forward meanwhile
PidOfLastCommand=$! # You need to remember the PID after
sleep 30s # Change this value with the needed one...
import screenshot.png # From Imagemagick it saves the screenshot
kill $PidOfLastCommand # Let's we kill gitk
echo "### Just DONE ###"
Notas:
- Requer o Imagemagick instalado (por
import
, mas você pode alterar o comando com o que preferir ). - Você precisa esperar o tempo suficiente em
sleep
... fazer algum teste e ter um valor aconchegante (você precisa ter certeza de que fez o seu trabalho)