Skip to content

helpers

Maciej J edited this page Aug 1, 2024 · 1 revision

#!/bin/bash

List of 3-letter month names

months=("Jan" "Feb" "Mar" "Apr" "May" "Jun" "Jul" "Aug" "Sep" "Oct" "Nov" "Dec")

Loop through each month

for month in "${months[@]}"; do

Create a .md file with the month name

echo -e "worth checking:\n\n" > "${month}.md" done

Clone this wiki locally