Skip to content
Snippets Groups Projects
Commit 3b8c0cc6 authored by rswindell's avatar rswindell
Browse files

New Unix shell wrappers for smb2sbl and sbl2smb (just copies of sbl).

parent b8e7590f
No related branches found
No related tags found
No related merge requests found
#!/bin/sh
os=`uname | tr "[A-Z]" "[a-z]"`
if [ -x gcc.$os.exe.release/$0 ]
then exec gcc.$os.exe.release/$0 $@
elif [ -x gcc.$os.exe.debug/$0 ]
then exec gcc.$os.exe.debug/$0 $@
elif [ -x *.$os.exe.release/$0 ]
then exec *.$os.exe.release/$0 $@
elif [ -x *.$os.exe.debug/$0 ]
then exec *.$os.exe.debug/$0 $@
elif [ -x *.$os.exe.*/$0 ]
then exec *.$os.exe.debug/$0 $@
fi
#!/bin/sh
os=`uname | tr "[A-Z]" "[a-z]"`
if [ -x gcc.$os.exe.release/$0 ]
then exec gcc.$os.exe.release/$0 $@
elif [ -x gcc.$os.exe.debug/$0 ]
then exec gcc.$os.exe.debug/$0 $@
elif [ -x *.$os.exe.release/$0 ]
then exec *.$os.exe.release/$0 $@
elif [ -x *.$os.exe.debug/$0 ]
then exec *.$os.exe.debug/$0 $@
elif [ -x *.$os.exe.*/$0 ]
then exec *.$os.exe.debug/$0 $@
fi
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment