6 lines
90 B
Bash
Executable File
6 lines
90 B
Bash
Executable File
#! /usr/bin/env bash
|
|
#
|
|
# Output first column of cron's meta.dat file.
|
|
|
|
awk '{ print $1 }'
|