File: release_date.sh

package info (click to toggle)
quickplot 0.10.3-1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 2,464 kB
  • sloc: ansic: 16,640; sh: 11,163; makefile: 395
file content (12 lines) | stat: -rwxr-xr-x 144 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

if test -z "$1" ; then
  echo "bad script $0 usage"
  exit 1
fi

if test -f "$1" ; then
  cat "$1"
else
  echo "not released yet"
fi