#!/usr/local/bin/bash


# horrid MSF shell to unicode script 
# thx to yunfo@binrev

cat $1 | sed -e 's/\\x\(..\)\\x\(..\)/%u\2\1/g' -e 's/".$//g' | sed 's/"//g' | grep "%u" | tr -d '\n'

