1 check_week
Dave Morriss edited this page 2024-06-04 16:48:09 +01:00
check_week - version: 0.0.2

Usage: ./check_week [-h] [week_no]

Checks a future week to ensure all the shows are on the Internet Archive.

Options:
    -h                  Print this help
    -i                  Ignore shows missing from the database during the
                        chosen week. Normally the script does not proceed if
                        there are fewer than 5 shows in a week.

Arguments:
    week_no             (optional, default current week) the week number to be
                        examined. This is a number in the range 1..52.
                        Anything else is illegal.

Environment variables
    check_week_DEBUG    If set to a non-zero value then the debugging
                        statements in the script are executed. Otherwise if
                        set to zero, or if the variable is absent no debug
                        information is produced.  The variable can be set
                        using the 'export' command or on the same line as the
                        command calling the script.  See the example below.

Examples
    ./check_week        # Check the current week
    ./check_week -i     # Check the current week ignoring missing shows
    ./check_week 6      # Check week 6 of the current year

    check_week_DEBUG=1 ./check_week     # Run with debugging enabled