This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Check if user input is provided | |
if [ -z "$*" ]; then | |
echo "Requires a prompt of what you want to do, i.e." | |
echo "\"llmpeg remove audio from example.mov\"" | |
exit 1 | |
fi | |
# Capture command-line arguments |