buncha posts and updates

This commit is contained in:
2023-08-23 21:38:40 -07:00
parent 4e1074d23c
commit cdf92c9ca6
9 changed files with 63 additions and 4 deletions

View File

@@ -1,7 +1,7 @@
#!/bin/bash
# Find all files of type PNG, JPEG, or TIFF
files=$(find ../hugo-content/static/img -type f -iname "*.png" -o -iname "*.jpg" -o -iname "*.tif")
files=$(find ../hugo-content/static/img/ -type f -iname "*.png" -o -iname "*.jpg" -o -iname "*.tif")
# Loop through all the files in the directory
for file in $files; do