Create file name equal to current date / time in Linux
Linux command to create file name equal to current date / time :
example create folder:
mkdir FOLDERNAME_`date +%d-%m-%Y_%H-%M-%S`
example create file with ping result (one file / hour – command add all lines to the end of the file)
ping -i 0.5 -s 1450 google.com -c 120 -w 500 -f >>ping-google.com_`date +%Y.%m.%d.%H`.txt &








