当 bash 脚本中的命令调用以变量为前缀时,是否有一些好方法可以以图形方式对齐它们?我有一个包含很多行的脚本,看起来像这样
GIT_EDITOR="some interesting command with 'quoting and' spaces" "${SOME_DIR}/actual_command" argument
这看起来不太好,并且在快速扫描源代码时很难找到该命令的真正含义。
这似乎好一点,但仍然不完美:
GIT_EDITOR="some interesting command with 'quoting and' spaces" \
"${SOME_DIR}/actual_command" argument
有没有更明确的解决方案?