File: probe

package info (click to toggle)
bind 1%3A8.1.2-5
  • links: PTS
  • area: main
  • in suites: slink
  • size: 5,076 kB
  • ctags: 7,956
  • sloc: ansic: 54,479; sh: 6,936; makefile: 2,900; yacc: 1,223; perl: 315; lex: 221; awk: 45; sed: 15
file content (11 lines) | stat: -rwxr-xr-x 108 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

uname=/bin/uname

if [ -f $uname ]; then
	case `$uname -s` in
	Linux) exit 0 ;;
	esac
fi

exit 1