Question
I have a collection of photos, which is stored under various sub-directories. How do I start a slideshow of the photos, without moving or copying the photos into one directory.
Answer
Using “Eye of Gnome”:
FILELIST=()
while read FILE ; do
FILELIST+=( "$FILE" )
done < <(find -type f)
eog -s "${FILELIST[@]}" &
Using "gThumb":
FILELIST=()
while read FILE ; do
FILELIST+=( "$FILE" )
done < <(find -type f)
gthumb -s "${FILELIST[@]}" &

Comments 2
Thanks! I have a lot of porn to get through
Posted 03 Jul 2010 at 11:47 am ¶Sure! Let me tell your mom.
Posted 03 Jul 2010 at 12:32 pm ¶Post a Comment