mirror of
https://github.com/Motion-Project/motion.git
synced 2026-03-05 14:56:46 -05: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 |