Skip to content

Instantly share code, notes, and snippets.

@mkeneqa
Created April 16, 2022 17:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mkeneqa/9da635127eccdbdd11a0ff671a2a446e to your computer and use it in GitHub Desktop.
Save mkeneqa/9da635127eccdbdd11a0ff671a2a446e to your computer and use it in GitHub Desktop.
Sets up monthly directory for current year for media backups
#!/bin/bash
YRDIR=$(date +'%Y')
mkdir $YRDIR
cd $YRDIR
mkdir 01_January 02_February 03_March 04_April 05_May 06_June 07_July 08_August 09_September 10_October 11_November 12_December
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment