File: release_date.bash

package info (click to toggle)
quickplot 1.0.1~rc-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,520 kB
  • sloc: ansic: 16,758; sh: 11,416; makefile: 337
file content (12 lines) | stat: -rwxr-xr-x 152 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash

if [ -z "$1" ] ; then
  echo "Usage: $0 RELEASE_DATE_FILE"
  exit 1
fi

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