mirror of
https://codeberg.org/vlw/curl.git
synced 2026-04-13 02:39:38 +02:00
docs: add save and load script reference to README
This commit is contained in:
parent
d43e64794f
commit
9ba0cb32e9
1 changed files with 11 additions and 1 deletions
12
README.md
12
README.md
|
|
@ -75,4 +75,14 @@ Run the `curl.sh` file from your shell and pass it two parametes for URL and req
|
|||
|
||||
```sh
|
||||
./curl.sh https://example.com GET
|
||||
```
|
||||
```
|
||||
|
||||
# Save and load configurations
|
||||
The `save.sh` script allows you to save and load configurations so you can easily switch between them.
|
||||
|
||||
Command|Description
|
||||
--|--
|
||||
`./save.sh save <name>`|Save the current configuration where `<name>` is the name of this configuration
|
||||
`./save.sh move <name>`|Move the current configuration where `<name>` is the name of this configuration. A new empty configuration will be created.
|
||||
`./save.sh load <name>`|Load a saved configuration where `<name>` is the name of the target configuration. The current configuration will be saved as `._backup`.
|
||||
`./save.sh list`|List all saved configurations
|
||||
Loading…
Add table
Reference in a new issue