Skip to content
Snippets Groups Projects
fslecho 215 B
Newer Older
Matthew Webster's avatar
Matthew Webster committed
#!/bin/sh
Matthew Webster's avatar
Matthew Webster committed
#   Copyright (C) 2012 University of Oxford
#
#   SHCOPYRIGHT
Matthew Webster's avatar
Matthew Webster committed
POSIXLY_CORRECT=1

string=$@
my_os=`uname -s`

if [ "X${my_os}" = "XLinux" ]; then
    /bin/echo -e "$string "
else
    /bin/echo "$string"
Matthew Webster's avatar
Matthew Webster committed
fi