forked from tldr-pages/tldr
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request tldr-pages#1 from tldr-pages/master
merge
- Loading branch information
Showing
3 changed files
with
44 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# borg | ||
|
||
> Deduplicating backup tool. | ||
> Creates local or remote backups that are mountable as filesystems. | ||
- Initialise a (local) repository: | ||
|
||
`borg init {{/path/to/repo_folder}}` | ||
|
||
- Backup a folder into the repository, creating an archive called "Monday": | ||
|
||
`borg create --progress {{/path/to/repo_folder}}::{{Monday}} {{/path/to/source_folder}}` | ||
|
||
- List all archives in a repository: | ||
|
||
`borg list {{/path/to/repo_folder}}` | ||
|
||
- Extract a specific folder from the "Monday" archive in a remote repository, excluding all *.ext files: | ||
|
||
`borg extract {{user}}@{{host}}:{{/path/to/repo_folder}}::{{Monday}} {{path/to/target_folder}} --exclude '{{*.ext}}'` | ||
|
||
- Prune a repository by deleting all archives older than 7 days, listing changes: | ||
|
||
`borg prune --keep-within {{7d}} --list {{/path/to/repo_folder}}` | ||
|
||
- Mount a repository as a FUSE filesystem: | ||
|
||
`borg mount {{/path/to/repo_folder}}::{{Monday}} {{/path/to/mountpoint}}` | ||
|
||
- Display help on creating archives: | ||
|
||
`borg create --help` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# pdfunite | ||
|
||
> PDF merging utility. | ||
- Merge 2 PDFs into a single PDF: | ||
|
||
`pdfunite {{path/to/fileA.pdf}} {{path/to/fileB.pdf}} {{path/to/merged_output.pdf}}` | ||
|
||
- Merge a folder of PDFs into a single PDF: | ||
|
||
`pdfunite {{path/to/directory/*.pdf}} {{path/to/merged_output.pdf}}` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters