source: node_modules/.bin/tsv2json@ e4c61dd

Last change on this file since e4c61dd was e4c61dd, checked in by istevanoska <ilinastevanoska@…>, 5 months ago

Prototype 1.1

  • Property mode set to 100644
File size: 393 bytes
Line 
1#!/bin/sh
2basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
3
4case `uname` in
5 *CYGWIN*|*MINGW*|*MSYS*)
6 if command -v cygpath > /dev/null 2>&1; then
7 basedir=`cygpath -w "$basedir"`
8 fi
9 ;;
10esac
11
12if [ -x "$basedir/node" ]; then
13 exec "$basedir/node" "$basedir/../d3-dsv/bin/dsv2json.js" "$@"
14else
15 exec node "$basedir/../d3-dsv/bin/dsv2json.js" "$@"
16fi
Note: See TracBrowser for help on using the repository browser.