How to set a variable to current date and date-1 in linux?

Viewed 229494

I want to set the variable date-today to the current date, and date_dir to yesterday's date, both in the format yyyy-mm-dd.

I am doing this:

#!/bin/bash
d=`date +%y%m%d%H%M%S`
echo $d
4 Answers
Related