PIbd-21_Danilov_V.V._Intern.../Lab3/node_modules/.bin/which
Владимир Данилов 83490711d5 отчет
2023-12-19 20:23:11 +04:00

13 lines
298 B
Bash

#!/bin/sh
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
case `uname` in
*CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;;
esac
if [ -x "$basedir/node" ]; then
exec "$basedir/node" "$basedir/../which/bin/which" "$@"
else
exec node "$basedir/../which/bin/which" "$@"
fi