Created
February 22, 2019 19:18
-
-
Save donniecode1983/f2681ccc89481fb27912775a02e4c72c to your computer and use it in GitHub Desktop.
Open Source Cat Software
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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