2026年物业门控五金耗材推荐榜:中企创联工业品,小区/写字楼/物业多场景门控配件全覆盖
2026/3/2 14:07:46
#!/bin/bash # slideshow--Displays a slide show of photos from the specified directory. # Uses ImageMagick's "display" utility. delay=2 # Default delay in seconds psize="1200x900>" # Preferred image size for display if [ $# -eq 0 ] ; then echo "Usage: $(basename $0) watch-directory" >&2 exit 1 fi watch="$1" if [ ! -d "$watch" ] ; then echo "$(basename $0): Specified directory $watch isn't a directory." >&2 exit 1 fi cd "$watch" if [ $? -ne 0 ] ; then echo "$(basename $0): Failed trying to cd into $watch" >&2 exit 1 fi suffixes="$(file * | grep image | cut -d: -f1 | rev | cut -d. -f1 | \ rev | sort | uniq | sed 's/^/\*./')" if [ -