mirror of
https://github.com/lalbornoz/roar.git
synced 2024-11-05 07:16:39 +00:00
13 lines
401 B
Bash
13 lines
401 B
Bash
|
#!/bin/sh
|
||
|
#
|
||
|
# MiRCARTToPngFiles.sh -- convert ASCII(s) w/ mIRC control codes to monospaced PNG(s) (for EFnet #MiRCART)
|
||
|
# Copyright (c) 2018 Lucio Andrés Illanes Albornoz <lucio@lucioillanes.de>
|
||
|
# This project is licensed under the terms of the MIT licence.
|
||
|
#
|
||
|
|
||
|
for FNAME in "${@}"; do
|
||
|
./MiRCARTToPngFile.py "${FNAME}" "${FNAME%.txt}.png";
|
||
|
done;
|
||
|
|
||
|
# vim:expandtab foldmethod=marker sw=4 ts=4 tw=120
|