Add a couple of questions

This commit is contained in:
abregman
2021-11-07 17:54:06 +02:00
parent 18e69a2baa
commit 5163a9a258
29 changed files with 2133 additions and 232 deletions

View File

@ -0,0 +1,13 @@
## Basic Date
### Objectives
1. 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
```