bwfiles/bundles/uberspace-crontab-dir/files/crontab-dir-generate-crontab.sh

14 lines
328 B
Bash
Raw Permalink Normal View History

2025-02-16 14:05:55 +01:00
#!/usr/bin/env bash
set -euo pipefail
echo "# Generated from ~/.config/cron.d"
echo "# Use crontab-dir-update to regenerate"
echo
2025-02-16 15:03:25 +01:00
echo "PATH=$HOME/.local/bin:$HOME/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin"
2025-02-16 14:05:55 +01:00
echo
2025-03-09 14:26:14 +01:00
echo "MAILTO=\"\""
echo
2025-02-16 14:05:55 +01:00
find $HOME/.config/cron.d -mindepth 1 -maxdepth 1 -type f | sort | xargs cat