cleaned a bit.
[feisty_meow.git] / scripts / core / date_stringer.sh
1 #!/bin/bash
2
3 # a handy little method that can be used for date strings.  it was getting
4 # really tiresome how many different ways the script did the date formatting.
5
6 function date_stringer()
7 {
8   date +"%Y_%m_%d_%a_%H%M_%S" | tr -d '/\n/'
9 }
10