Bash Snipets

Z Waritkova wiki
Verze z 7. 8. 2015, 10:26, kterou vytvořil Waritko (diskuse | příspěvky) (Založena nová stránka s textem „Get all video files in dir recursive <source lang="bash">find . -regextype posix-extended -regex '.*\.(avi|mkv|flv|mov|mpg|wmv|mp4|m4v|rm)' -exec realpath…“)
(rozdíl) ← Starší verze | zobrazit aktuální verzi (rozdíl) | Novější verze → (rozdíl)
Skočit na navigaci Skočit na vyhledávání

Get all video files in dir recursive

find . -regextype posix-extended -regex '.*\.(avi|mkv|flv|mov|mpg|wmv|mp4|m4v|rm)' -exec realpath {} + | sort