导出 kid3-cli 的语法
Syntax of exporting kid3-cli
我在终端中输入这个命令kid3-cli -c export -c "./tags.txt" -c "CSV more unquoted"
或者我在脚本中尝试:
kid3-cli -c export \
-c "./tags.txt" \
-c "CSV more unquoted" \
这样写:
Usage:
export P S [T] Export to file
S = Format name
当我以相同的顺序交互执行时,它起作用了。
kid3-cli> export "./tags.txt" "CSV more unquoted"
kid3-cli>
我做错了什么以及如何正确构建语法以使其在命令中起作用?
正确答案是:
kid3-cli -c "export tags.txt 'CSV more unquoted'"
我在终端中输入这个命令kid3-cli -c export -c "./tags.txt" -c "CSV more unquoted"
或者我在脚本中尝试:
kid3-cli -c export \
-c "./tags.txt" \
-c "CSV more unquoted" \
这样写:
Usage:
export P S [T] Export to file
S = Format name
当我以相同的顺序交互执行时,它起作用了。
kid3-cli> export "./tags.txt" "CSV more unquoted"
kid3-cli>
我做错了什么以及如何正确构建语法以使其在命令中起作用?
正确答案是:
kid3-cli -c "export tags.txt 'CSV more unquoted'"