6 lines
149 B
Bash
Executable File

#!/bin/bash
# Run mpv on the output files of minrss
mpvs $(for v in "$@"; do echo $(head -n 2 "${v}" | tail -n 1 | awk -F\" '{ print $2 }'); done)