Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
lazarus / usr / share / lazarus / 1.6 / tools / runwait.sh
Size: Mime:
#!/bin/sh

CommandLine=$@
#set -x

echo $CommandLine
ext=${CommandLine#*.}
if [ "$ext" = "exe" ]; then
  echo "Windows Executable detected. Attempting to use WINE..."
  if [ -x "`which wine`" ]; then
    wine $CommandLine
  else
    echo "WINE not found in path"
  fi
else
  $CommandLine
fi

echo "--------------------------------------------------"
echo "Press enter"
read trash crash

# end.