9 lines
110 B
Bash
Executable File
9 lines
110 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cutFile="$(cutVideo $1 $2 $3)"
|
|
status=$?
|
|
|
|
if [ $status -eq 0 ]; then
|
|
shrinkVideo "$cutFile"
|
|
fi
|