7 lines
116 B
Bash
Executable File
7 lines
116 B
Bash
Executable File
#!/bin/sh
|
|
|
|
tube="$(printf "%s\n" "$1" | grep "watch?v=" | wc -l)"
|
|
[ "$tube" -eq 1 ] && mpv "$1" && exit
|
|
|
|
firefox $1
|