$MY_FILENAME
$MY_EXIF_INFO
EOF (( MY_FILE++ )) done fi ### Movies (MOV or MP4) if [[ $(find . -maxdepth 1 -type f -iname \*.mov -o -iname '*.mp4' | wc -l) -gt 0 ]]; then cat >> "$MY_INDEX_HTML_FILE" << EOF
#!/bin/bash # gallery.sh # Author: Nils Knieling - https://github.com/Cyclenerd/gallery_shell # Inspired by: Shapor Naghibzadeh - https://github.com/shapor/bashgal ######################################################################################### #### Configuration Section ######################################################################################### MY_HEIGHT_SMALL=406 MY_HEIGHT_LARGE=768 MY_QUALITY=85 MY_THUMBDIR="__thumbs" MY_INDEX_HTML_FILE="index.html" MY_TITLE="Gallery" MY_FOOTER='Created with gallery.sh' # Use convert from ImageMagick MY_CONVERT_COMMAND="convert" # Use JHead for EXIF Information MY_EXIF_COMMAND="jhead" # Bootstrap 4 MY_CSS="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.6.2/css/bootstrap.min.css" # Debugging output # true=enable, false=disable MY_DEBUG=true ######################################################################################### #### End Configuration Section ######################################################################################### MY_SCRIPT_NAME=$(basename "$0") MY_DATETIME=$(date -u "+%Y-%m-%d %H:%M:%S") MY_DATETIME+=" UTC" function usage { MY_RETURN_CODE="$1" echo -e "Usage: $MY_SCRIPT_NAME [-t
$MY_EXIF_INFO