basic_date.md

August 1, 2022 ยท View on GitHub

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

Contents

  1. 1Basic Date
  2. 1.1Objectives
  3. 1.2Solution