Browse Source

cakeshell

euromark 13 years ago
parent
commit
a7cd7d820b
1 changed files with 14 additions and 0 deletions
  1. 14 0
      Vendor/cakeshell

+ 14 - 0
Vendor/cakeshell

@@ -0,0 +1,14 @@
+#!/bin/bash
+TERM=dumb
+export TERM
+cmd="cake"
+while [ $# -ne 0 ]; do
+	if [ "$1" = "-cli" ] || [ "$1" = "-console" ]; then
+		PATH=$PATH:$2
+		shift
+	else
+		cmd="${cmd} $1"
+	fi
+	shift
+done
+$cmd