Ubuntu Pastebin

Paste from mupf at Fri, 1 Mar 2019 18:34:50 +0000

Download as text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
#! /bin/bash

if [ $# -ge 1 ]
then
    mkdir -p `basename $1`-out
    convert -monitor $1 -crop 8x8 `basename $1`-out/tile%03d.bmp
    fdupes -d -I `basename $1`-out/
else
  echo "Usage: $0 <filename>"
fi
Download as text