https://cdn.rawgit.com/mfd/f3d96ec7f0e8f034cc22ea73b3797b59/raw/856f1dbb8d807aabceb80b6d4f94b464df461b3e/gotham.css
<link rel="https://cdn.rawgit.com/mfd/f3d96ec7f0e8f034cc22ea73b3797b59/raw/856f1dbb8d807aabceb80b6d4f94b464df461b3e/gotham.css">
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/zsh | |
# Define the image types to search for | |
extensions=("*.jpeg" "*.jpg" "*.tiff" "*.tif" "*.png" "*.ico") | |
# Iterate over each image type | |
for type in "${extensions[@]}"; do | |
# Find files of the specified image type | |
find . -type f -iname "$type" | while read -r IMAGE; do | |
# Get the filename without extension |