mirror of
https://github.com/borgbackup/borg.git
synced 2026-07-13 12:02:30 -04:00
7 lines
262 B
Bash
Executable file
7 lines
262 B
Bash
Executable file
#!/usr/bin/bash
|
|
echo -n > usage.rst
|
|
for cmd in init create extract delete prune verify change-passphrase; do
|
|
LINE=`echo -n attic $cmd | tr 'a-z ' '~'`
|
|
echo -e ".. _usage_attic_$cmd:\n\nattic $cmd\n$LINE\n::\n" >> usage.rst
|
|
attic $cmd -h >> usage.rst
|
|
done
|