docs(tools): Updated argument via file with quotations

Closes https://github.com/espressif/esp-idf/issues/18077
This commit is contained in:
Marek Fiala
2026-01-05 16:20:42 +01:00
parent fd892af42f
commit a0685f893f
+2 -2
View File
@@ -295,9 +295,9 @@ For example, let's have a file `custom_flash.txt`:
flash --baud 115200
Then the command can be executed as: ``idf.py @custom_flash.txt monitor``
Then the command can be executed as: ``idf.py "@custom_flash.txt" monitor``
Arguments from a file can be combined with additional command line arguments, and multiple files annotated with ``@`` can be used simultaneously. For instance, if there is a second file ``another_config.txt``, both can be utilized by specifying ``idf.py @custom_flash.txt @another_config.txt monitor``.
Arguments from a file can be combined with additional command line arguments, and multiple files annotated with ``@`` can be used simultaneously. For instance, if there is a second file ``another_config.txt``, both can be utilized by specifying ``idf.py "@custom_flash.txt" "@another_config.txt" monitor``.
A further example of how this argument file can be used, e.g., creating configuration profile files via @filename, is in the :example_file:`Multiple Build Configurations Example <build_system/cmake/multi_config/README.md>`.