You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
6 lines
254 B
6 lines
254 B
//#!/bin/zsh
|
|
# convert IBM cp437 ansi files to linux utf-8 text file.
|
|
iconv -f cp437 -t utf-8 < input.ans > output.txt ;
|
|
# make single line ANSI art multiline 80 characters wide (for modern terminals)
|
|
sed -e "s/.\{80\}/&\n\r/" < input.txt > output.txt
|
|
|
|
|