Help with find command
by Yummiesttag from LinuxQuestions.org on (#5K1Y8)
I have a comma2 with openpilot installed. It's a self driving" type device, it records video in 1 second increments and creates a folder for that file. The company provided a command which I provided below, the issue is when it compile her video it's not in the correct order, the number on the end of each folder increases, 1,2,3,4,5 etc but the command is compiling them like 1,10,11-2,20,21 etc is there a better command to use or something to change to make this go from 1-70?
find . -type f -wholename "*2021-06-12--17-47-53--*/fcamera.hevc" -exec cat {} + > To_Meet.hevc
find . -type f -wholename "*2021-06-12--17-47-53--*/fcamera.hevc" -exec cat {} + > To_Meet.hevc