9 lines
260 B
Bash
9 lines
260 B
Bash
#!/bin/bash
|
|
|
|
# mime=$(file -b --mime-type dog.jpeg)
|
|
mime=$(mimetype https://bscdn.sgp1.digitaloceanspaces.com/CurriculumApp/IK3/Week8/Core/Day4/AudioVisual/1RBE12.wmv)
|
|
echo $mime
|
|
if [[ $mime = video/@(x-ms-wmv|wmv) ]]; then
|
|
echo "need conversion"
|
|
fi
|