[Linux] – Create a folder with the current date and time – 2019. And make it file system compliant! EASY!

Linux Command: current_date_and_time=$(date +%YY.%mM.%dD_%HH_%MM_%SS) && mkdir -p YOUR_FOLDER_NAME_$current_date_and_time What this command is doing is running 'date' with a specified format of YYYY.MM.DD_HH_MM_SS which is compatible across all operating systems; then…

Continue Reading[Linux] – Create a folder with the current date and time – 2019. And make it file system compliant! EASY!