uncrustify:tldr:04ff0
This command is using the "uncrustify" tool with two main options: "--update-config" and "-o".
-
"--update-config": This option tells the "uncrustify" tool to update the given configuration file with the new settings. It means that the configuration file specified by "${path-to-new-cfg}" will be modified based on the current default settings of "uncrustify".
-
"-o ${path-to-new-cfg}": This option specifies the output file for the updated configuration. The "${path-to-new-cfg}" represents the path where the new configuration file will be saved after being updated by "uncrustify".
In summary, this command updates a configuration file using "uncrustify", making it reflect the default settings of the tool, and then saves the updated configuration to a new file specified by "${path-to-new-cfg}".