Skip to content

Commit

Permalink
adds languages option as full word
Browse files Browse the repository at this point in the history
  • Loading branch information
ajyey committed Mar 27, 2024
1 parent 96dc8d7 commit 96d1374
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/DV7toDV8.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ function print_help {
echo "Options:"
echo "-k|--keep-files Keep working files"
echo "-t|--target PATH Specify the target directory (default: current directory)"
echo "-l LANG Specify the language codes (comma-separated) for audio and subtitle tracks. If not specified, default to all tracks."
echo "-l|languages LANG Specify the language codes (comma-separated) for audio and subtitle tracks. If not specified, default to all tracks."
echo "-u|--use-local Use local system binaries if available"
echo "-h|--help Display this help message"
echo ""
Expand All @@ -51,7 +51,7 @@ while (( "$#" )); do
targetDir=$2
echo "Target directory set to '$targetDir'"
shift 2;;
-l)
-l|--languages)
languageCodes=$2
echo "Language codes set to '$languageCodes'"
languageCodeSet=true
Expand Down

0 comments on commit 96d1374

Please sign in to comment.