Sha256: 6086706c4895fbc597283195813d8ba8653366cb988f06590fdb19bf52ebc06f

Contents?: true

Size: 306 Bytes

Versions: 2

Compression:

Stored size: 306 Bytes

Contents

#!/bin/sh

# The test suite calls this script with an invented (i.e. not standard for the
# crontab command) "-f <filename>" option.  We use that filename as if it were
# the user's crontab and otherwise behave as the normal crontab command.

case "$3" in
'-l')
  cat "$2"
  ;;
*)
  cp "$3" "$2"
  ;;
esac

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
tpkg-2.3.5 test/testcmds/crontab
tpkg-2.3.4 test/testcmds/crontab