mirror of
https://github.com/bregman-arie/devops-exercises.git
synced 2026-02-05 08:09:13 +00:00
184 B
184 B
Basic Date
Objectives
- Write a script that will put the current date in a file called "the_date.txt"
Solution
#!/usr/bin/env bash
echo $(date) > the_date.txt