[ prog / sol / mona ]

prog


Help on the Way

92 2022-10-04 06:45

I wish you could comment bash like this:

find . -type f -print0 \           # list all files
    | xargs -0 -n1 ffprobe 2>&1 \  # extract media information
    | awk '...' \                  # do something with it
    | less
103


VIP:

do not edit these