Automatically get the latest json file if only given a folder as path #33

Merged
MG-95 merged 4 commits from automatically-get-latest-file into master 2022-10-25 00:14:48 +02:00
Showing only changes of commit 914881a104 - Show all commits

View file

@ -8,7 +8,15 @@ python3 edit_data_form.py
## Daten eines bestehenden Mitglieds ändern
Eine Nennung des Ordners des Members genügt.
Dann wird stets die aktuelle json-Datei verwendet.
```bash
MEMBER_FILE=<path/to/member/json>
python3 edit_data_form.py $MEMBER_FILE
python3 edit_data_form.py <path/to/member/>
```
Alternativ kann die json-Datei explizit genannt werden:
```bash
python3 edit_data_form.py <path/to/member/member.json>
```