├── .gitignore ├── LICENSE ├── README.md ├── century.txt ├── cronjob.sh ├── day.txt ├── hour.txt ├── minute.txt ├── month.txt ├── time.txt ├── timestamp.txt ├── week.txt └── year.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casdr/TaaS/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casdr/TaaS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casdr/TaaS/HEAD/README.md -------------------------------------------------------------------------------- /century.txt: -------------------------------------------------------------------------------- 1 | 21 2 | -------------------------------------------------------------------------------- /cronjob.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casdr/TaaS/HEAD/cronjob.sh -------------------------------------------------------------------------------- /day.txt: -------------------------------------------------------------------------------- 1 | 25 2 | -------------------------------------------------------------------------------- /hour.txt: -------------------------------------------------------------------------------- 1 | 12 2 | -------------------------------------------------------------------------------- /minute.txt: -------------------------------------------------------------------------------- 1 | 03 2 | -------------------------------------------------------------------------------- /month.txt: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /time.txt: -------------------------------------------------------------------------------- 1 | Wed Oct 25 12:03:03 UTC 2017 2 | -------------------------------------------------------------------------------- /timestamp.txt: -------------------------------------------------------------------------------- 1 | 1508932983 2 | -------------------------------------------------------------------------------- /week.txt: -------------------------------------------------------------------------------- 1 | 43 2 | -------------------------------------------------------------------------------- /year.txt: -------------------------------------------------------------------------------- 1 | 2017 2 | --------------------------------------------------------------------------------