Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/utils
diff options
context:
space:
mode:
Diffstat (limited to 'utils')
-rwxr-xr-xutils/narwhal/ksetup.sh32
1 files changed, 0 insertions, 32 deletions
diff --git a/utils/narwhal/ksetup.sh b/utils/narwhal/ksetup.sh
deleted file mode 100755
index f345145..0000000
--- a/utils/narwhal/ksetup.sh
+++ /dev/null
@@ -1,32 +0,0 @@
-#!/bin/bash
-# This script holds utilities for Karma lessons
-# MIT License
-# copyright 2009 Bryan W Berry
-
-narwhal=./bin/narwhal
-
-
-kgettext() {
-
- if [ -z ./narwhal/bin ] ; then
- echo "You need narwhal js interpreter in order to proceed"
- exit 1
- fi
-
- $narwhal ./setup.js
- exit 0
-}
-
-
-
-case "$1" in
- "--kgettext")
- kgettext
- ;;
- "--help")
- echo "Usage: --gettext html_file.html target_file.po"
- ;;
- *)
- echo "no other options right now"
- ;;
-esac \ No newline at end of file