Skip to content

Commit

Permalink
Convert backtick command substitution to $() cuz internet says so: h…
Browse files Browse the repository at this point in the history
  • Loading branch information
nekno committed Jul 24, 2023
1 parent 8544d4f commit 3a6469f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DV7toDV8.sh
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jsonFilePath=$configPath/DV7toDV8.json

for mkvFile in "$targetDir"/*.mkv
do
mkvBase=`basename "$mkvFile" .mkv`
mkvBase=$(basename "$mkvFile" .mkv)

echo "Demuxing DV7 BL+EL+RPU HEVC from MKV..."
"$mkvextractPath" "$mkvFile" tracks 0:"$mkvBase.DV7.BL_EL_RPU.hevc"
Expand Down

0 comments on commit 3a6469f

Please sign in to comment.