#!/bin/sh
# register *.exe files to be called using mono
#
# (c) MATRIX VISION GmbH 2013

if [ -e /proc/sys/fs/binfmt_misc/register ]; then
        echo "registering mono to be used with *.exe files"
        echo ':CLR:M::MZ::/usr/bin/mono:' > /proc/sys/fs/binfmt_misc/register
fi

