* Added basic runner for yt-dlp commands * Updated formatting rules * Added JSON runner; Added test script for CLI interactions * Reworked yt-dlp runner; added proper test mocks
7 lines
97 B
Bash
Executable file
7 lines
97 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if [[ "$@" == *"--dump-json"* ]]; then
|
|
echo '{ "args": "'$@'"}'
|
|
else
|
|
echo $@
|
|
fi
|