Не забываем установить параметры гита, чтобы гитхаб вас детектил:
git config --global user.name "Petya Petya"
git config --global user.email "petya@petya.pt"
#!/bin/bash | |
set -e | |
mkdir -p out-mov-1 | |
for file in *.MOV; do | |
if [[ -f "$file" ]]; then | |
outfile="out-mov-1/${file%.*}.mp4" | |
echo "Converting $file -> $outfile" | |