Advertisement
Guest User

Untitled

a guest
Jan 26th, 2020
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. #!/bin/sh
  2. ./bmp $1 outDEFAULT.bsdm && \
  3. ./bmp $1 outD.bsdm --dithering && \
  4. ./bmp $1 outDG.bsdm --dithering --grayscale && \
  5. ./bmp $1 outC.bsdm --custom-palette && \
  6. ./bmp $1 outCD.bsdm --custom-palette --dithering && \
  7. ./bmp $1 outG.bsdm --grayscale && \
  8. ./bmp outDEFAULT.bsdm outDEFAULT.bmp && \
  9. ./bmp outD.bsdm outD.bmp && \
  10. ./bmp outDG.bsdm outDG.bmp && \
  11. ./bmp outC.bsdm outC.bmp && \
  12. ./bmp outCD.bsdm outCD.bmp && \
  13. ./bmp outG.bsdm outG.bmp
  14. echo "[*] Success !"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement