#!/bin/bash
OLDIFS=$IFS
IFS=""
export $IFS
foo=$(winepath -w $*)
wine /usr/share/IrfanView/i_view32.exe $foo &
IFS=$OLDIFS
export $IFS
exit 0
