blob: 11fc2bc3842de13ef7d8215164208c108ef7e186 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#! /bin/sh
# stop on errors
set -e
args=" $*"
# NOTE: Option 'pipefail' is not standard sh
set -o pipefail
wine --debugmsg -all -- mwasmnlm $args | \
perl -pe 's/\r//g; s/^\e.*\e(\[J|>)?//; s/[[^:print:]]//g'
|