File: econtact

package info (click to toggle)
ncbi-entrez-direct 10.9.20190219%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 1,192 kB
  • sloc: perl: 6,282; sh: 1,685; makefile: 77
file content (11 lines) | stat: -rwxr-xr-x 265 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh
dir=`dirname "$0"`
case "`uname -s`" in
 CYGWIN_NT*)
   # Use a negative match here because the shell treats 0 as success.
   if perl -e 'exit $^O !~ /^MSWin/'; then
      dir=`cygpath -w "$dir"`
   fi
   ;;
esac
exec perl "$dir"/edirect.pl -contact "$@"