Skip to content

Instantly share code, notes, and snippets.

@donniecode1983
Created February 22, 2019 19:18
Show Gist options
  • Save donniecode1983/f2681ccc89481fb27912775a02e4c72c to your computer and use it in GitHub Desktop.
Save donniecode1983/f2681ccc89481fb27912775a02e4c72c to your computer and use it in GitHub Desktop.
Open Source Cat Software
#This is a small gist that will house snippits of code for developing open source software for better care of domestic cats.
#Bash Script
#The Below script removes recon camera watermark and replaces with the Kitty Shepard URL
---------------------------
#!/bin/bash
for i in <folder location>; do
echo $i
echo "render-$i"
# convert $i -draw "fill black rectangle 12,2628,800,3000" render-$i
convert $i -gravity south \
-fill '#000' -draw 'rectangle 12,2628,1325,3000' \
-fill white -pointsize 172 -gravity southwest -annotate +25+95 'KittyShepard.org' \
$i
done
----------------------------------
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment