1
0
mirror of https://github.com/instaloader/instaloader.git synced 2024-10-05 14:57:08 +02:00

doc: add info about read args from file.

This commit is contained in:
AndCycle 2018-08-16 17:09:26 +08:00
parent c4ceaf9636
commit 7a048a3c04

View File

@ -192,3 +192,20 @@ Miscellaneous Options
Disable user interaction, i.e. do not print messages (except errors) and fail
if login credentials are needed but not given.
This is handy for running :ref:`instaloader-as-cronjob`.
.. option:: +args.txt
Read arguments from file `args.txt`, a shortcut to provide argument from
file rather than command-line. This provide a convient way to hide login
info from CLI. and also can use for simplify managment of long arguments.
.. note:: text file should separate arg with line break.
args.txt example
```
--login MYUSENAME
--password MYPASSWORD
--fast-update
```