hi
i access lots of video into hdd. if i want to find a 2009.10.10.09.08.45.avi, can i use linux command :find ?
how to find video file?
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
hi
i access lots of video into hdd. if i want to find a 2009.10.10.09.08.45.avi, can i use linux command :find ?
how to find video file?
the command would be
> find . -name "2009.10.10.09.08.45.avi"
FYI, you can type 'man' command to find more information on a particular topic, for example
> man find
would provide information on how to use find command.