mirror of
https://github.com/Motion-Project/motion.git
synced 2026-04-20 05:56:58 -04:00
7 lines
97 B
Bash
Executable File
7 lines
97 B
Bash
Executable File
#!/bin/sh
|
|
|
|
FILES=./neg/*.jpg
|
|
for FULLNAME in $FILES
|
|
do
|
|
printf "$FULLNAME \n" >>neglist.txt
|
|
done |