Skip to content

Instantly share code, notes, and snippets.

@neos1803
Created September 6, 2021 02:44
Show Gist options
  • Save neos1803/20c621e1d2e6199993d8ca67e67b1de1 to your computer and use it in GitHub Desktop.
Save neos1803/20c621e1d2e6199993d8ca67e67b1de1 to your computer and use it in GitHub Desktop.
#!/bin/bash
#Examples to create docx files with month as input
month=$1
for i in {1..31}
do
touch "2021-${month}-${i}_Nanda.docx"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment