#!/bin/sh
#################################################################
# Created by Yuriy Kuzin
# Use it an modify it whatever and ehenever you want.
# You can remove who create this script.
# Modified: 30/08/2014
################################################################
echo "Creating symlinks"
cd /usr/lib/xrdp/;
for f in *.dylib; do ln -s "$f" "$(echo "$f"|awk -F "." '{print $1'}).dylib";done;
exit 0;
