Changes between Version 44 and Version 45 of Concatenate


Ignore:
Timestamp:
Mar 17, 2021, 1:14:51 PM (5 years ago)
Author:
samuelwn
Comment:

Throws 'Unsafe file name' error with preceeding './'

Legend:

Unmodified
Added
Removed
Modified
  • Concatenate

    v44 v45  
    4444for f in ./*.wav; do echo "file '$f'" >> mylist.txt; done
    4545# or with printf
    46 printf "file '%s'\n" ./*.wav > mylist.txt
     46printf "file '%s'\n" *.wav > mylist.txt
    4747}}}
    4848