Foiled-Again 0.1.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- foiled_again-0.1.2/.gitattributes +116 -0
- foiled_again-0.1.2/.gitignore +20 -0
- foiled_again-0.1.2/LICENSE +9 -0
- foiled_again-0.1.2/PKG-INFO +98 -0
- foiled_again-0.1.2/README.md +65 -0
- foiled_again-0.1.2/docs/img/foiled-again.svg +130 -0
- foiled_again-0.1.2/docs/img/foiled-again_add.svg +126 -0
- foiled_again-0.1.2/docs/img/foiled-again_refresh.svg +114 -0
- foiled_again-0.1.2/docs/img/foiled-again_settings.svg +94 -0
- foiled_again-0.1.2/docs/img/foiled-again_summary.svg +86 -0
- foiled_again-0.1.2/docs/img/foiled-again_view.svg +109 -0
- foiled_again-0.1.2/foiled_again/__init__.py +78 -0
- foiled_again-0.1.2/foiled_again/__main__.py +4 -0
- foiled_again-0.1.2/foiled_again/cli/__init__.py +8 -0
- foiled_again-0.1.2/foiled_again/cli/_typer.py +24 -0
- foiled_again-0.1.2/foiled_again/cli/add.py +92 -0
- foiled_again-0.1.2/foiled_again/cli/common.py +91 -0
- foiled_again-0.1.2/foiled_again/cli/refresh.py +110 -0
- foiled_again-0.1.2/foiled_again/cli/settings.py +10 -0
- foiled_again-0.1.2/foiled_again/cli/summary.py +70 -0
- foiled_again-0.1.2/foiled_again/cli/view.py +127 -0
- foiled_again-0.1.2/foiled_again/console.py +70 -0
- foiled_again-0.1.2/foiled_again/database/__init__.py +3 -0
- foiled_again-0.1.2/foiled_again/database/tables.py +250 -0
- foiled_again-0.1.2/foiled_again/errors.py +7 -0
- foiled_again-0.1.2/foiled_again/settings.py +113 -0
- foiled_again-0.1.2/foiled_again/sqlite_cache.py +46 -0
- foiled_again-0.1.2/foiled_again/tcg_player/__init__.py +3 -0
- foiled_again-0.1.2/foiled_again/tcg_player/schemas.py +83 -0
- foiled_again-0.1.2/foiled_again/tcg_player/service.py +208 -0
- foiled_again-0.1.2/foiled_again/utils.py +49 -0
- foiled_again-0.1.2/prek.toml +53 -0
- foiled_again-0.1.2/pyproject.toml +153 -0
- foiled_again-0.1.2/renovate.json +6 -0
- foiled_again-0.1.2/tests/__init__.py +0 -0
- foiled_again-0.1.2/tests/utils_test.py +25 -0
- foiled_again-0.1.2/uv.lock +1146 -0
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
# Common settings that generally should always be used with your language specific settings
|
|
2
|
+
|
|
3
|
+
# Auto detect text files and perform LF normalization
|
|
4
|
+
* text=auto
|
|
5
|
+
|
|
6
|
+
#
|
|
7
|
+
# The above will handle all files NOT found below
|
|
8
|
+
#
|
|
9
|
+
|
|
10
|
+
# Documents
|
|
11
|
+
*.bibtex text diff=bibtex
|
|
12
|
+
*.doc diff=astextplain
|
|
13
|
+
*.DOC diff=astextplain
|
|
14
|
+
*.docx diff=astextplain
|
|
15
|
+
*.DOCX diff=astextplain
|
|
16
|
+
*.dot diff=astextplain
|
|
17
|
+
*.DOT diff=astextplain
|
|
18
|
+
*.pdf diff=astextplain
|
|
19
|
+
*.PDF diff=astextplain
|
|
20
|
+
*.rtf diff=astextplain
|
|
21
|
+
*.RTF diff=astextplain
|
|
22
|
+
*.md text diff=markdown
|
|
23
|
+
*.mdx text diff=markdown
|
|
24
|
+
*.tex text diff=tex
|
|
25
|
+
*.adoc text
|
|
26
|
+
*.textile text
|
|
27
|
+
*.mustache text
|
|
28
|
+
*.csv text eol=crlf
|
|
29
|
+
*.tab text
|
|
30
|
+
*.tsv text
|
|
31
|
+
*.txt text
|
|
32
|
+
*.sql text
|
|
33
|
+
*.epub diff=astextplain
|
|
34
|
+
|
|
35
|
+
# Graphics
|
|
36
|
+
*.png binary
|
|
37
|
+
*.jpg binary
|
|
38
|
+
*.jpeg binary
|
|
39
|
+
*.gif binary
|
|
40
|
+
*.tif binary
|
|
41
|
+
*.tiff binary
|
|
42
|
+
*.ico binary
|
|
43
|
+
# SVG treated as text by default.
|
|
44
|
+
*.svg text
|
|
45
|
+
# If you want to treat it as binary,
|
|
46
|
+
# use the following line instead.
|
|
47
|
+
# *.svg binary
|
|
48
|
+
*.eps binary
|
|
49
|
+
|
|
50
|
+
# Scripts
|
|
51
|
+
*.bash text eol=lf
|
|
52
|
+
*.fish text eol=lf
|
|
53
|
+
*.sh text eol=lf
|
|
54
|
+
*.zsh text eol=lf
|
|
55
|
+
# These are explicitly windows files and should use crlf
|
|
56
|
+
*.bat text eol=crlf
|
|
57
|
+
*.cmd text eol=crlf
|
|
58
|
+
*.ps1 text eol=crlf
|
|
59
|
+
|
|
60
|
+
# Serialisation
|
|
61
|
+
*.json text
|
|
62
|
+
*.toml text
|
|
63
|
+
*.xml text
|
|
64
|
+
*.yaml text
|
|
65
|
+
*.yml text
|
|
66
|
+
|
|
67
|
+
# Archives
|
|
68
|
+
*.7z binary
|
|
69
|
+
*.gz binary
|
|
70
|
+
*.tar binary
|
|
71
|
+
*.tgz binary
|
|
72
|
+
*.zip binary
|
|
73
|
+
|
|
74
|
+
# Text files where line endings should be preserved
|
|
75
|
+
*.patch -text
|
|
76
|
+
|
|
77
|
+
#
|
|
78
|
+
# Exclude files from exporting
|
|
79
|
+
#
|
|
80
|
+
|
|
81
|
+
.gitattributes export-ignore
|
|
82
|
+
.gitignore export-ignore
|
|
83
|
+
.gitkeep export-ignore
|
|
84
|
+
# Apply override to all files in the directory
|
|
85
|
+
*.md linguist-detectable
|
|
86
|
+
# Basic .gitattributes for a python repo.
|
|
87
|
+
|
|
88
|
+
# Source files
|
|
89
|
+
# ============
|
|
90
|
+
*.pxd text diff=python
|
|
91
|
+
*.py text diff=python
|
|
92
|
+
*.py3 text diff=python
|
|
93
|
+
*.pyw text diff=python
|
|
94
|
+
*.pyx text diff=python
|
|
95
|
+
*.pyz text diff=python
|
|
96
|
+
*.pyi text diff=python
|
|
97
|
+
|
|
98
|
+
# Binary files
|
|
99
|
+
# ============
|
|
100
|
+
*.db binary
|
|
101
|
+
*.p binary
|
|
102
|
+
*.pkl binary
|
|
103
|
+
*.pickle binary
|
|
104
|
+
*.pyc binary export-ignore
|
|
105
|
+
*.pyo binary export-ignore
|
|
106
|
+
*.pyd binary
|
|
107
|
+
|
|
108
|
+
# Jupyter notebook
|
|
109
|
+
*.ipynb text eol=lf
|
|
110
|
+
|
|
111
|
+
# Note: .db, .p, and .pkl files are associated
|
|
112
|
+
# with the python modules ``pickle``, ``dbm.*``,
|
|
113
|
+
# ``shelve``, ``marshal``, ``anydbm``, & ``bsddb``
|
|
114
|
+
# (among others).
|
|
115
|
+
# Fix syntax highlighting on GitHub to allow comments
|
|
116
|
+
.vscode/*.json linguist-language=JSON-with-Comments
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Jonah Jackson
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
6
|
+
|
|
7
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
8
|
+
|
|
9
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: Foiled-Again
|
|
3
|
+
Version: 0.1.2
|
|
4
|
+
Summary: A simple cli tool to collect and track pricing of TCG cards
|
|
5
|
+
Project-URL: Homepage, https://pypi.org/p/Foiled-Again
|
|
6
|
+
Project-URL: Issues, https://codeberg.org/BuriedInCode/Foiled-Again/issues
|
|
7
|
+
Project-URL: Source, https://codeberg.org/BuriedInCode/Foiled-Again
|
|
8
|
+
Author-email: BuriedInCode <BuriedInCode@tuta.io>
|
|
9
|
+
License-Expression: MIT
|
|
10
|
+
License-File: LICENSE
|
|
11
|
+
Classifier: Development Status :: 4 - Beta
|
|
12
|
+
Classifier: Environment :: Console
|
|
13
|
+
Classifier: Framework :: Pydantic :: 2
|
|
14
|
+
Classifier: Natural Language :: English
|
|
15
|
+
Classifier: Operating System :: OS Independent
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
21
|
+
Classifier: Typing :: Typed
|
|
22
|
+
Requires-Python: >=3.10
|
|
23
|
+
Requires-Dist: currencyconverter>=0.18.0
|
|
24
|
+
Requires-Dist: httpx[http2]>=0.28.0
|
|
25
|
+
Requires-Dist: pydantic>=2.12.0
|
|
26
|
+
Requires-Dist: ratelimit>=2.2.1
|
|
27
|
+
Requires-Dist: rich>=14.3.0
|
|
28
|
+
Requires-Dist: sqlmodel>=0.0.37
|
|
29
|
+
Requires-Dist: tomli-w>=1.2.0
|
|
30
|
+
Requires-Dist: tomli>=2.4.0; python_version < '3.11'
|
|
31
|
+
Requires-Dist: typer>=0.24.0
|
|
32
|
+
Description-Content-Type: text/markdown
|
|
33
|
+
|
|
34
|
+
# Foiled Again
|
|
35
|
+
|
|
36
|
+
[](https://pypi.org/p/Foiled-Again)
|
|
37
|
+
[](https://pypi.org/p/Foiled-Again)
|
|
38
|
+
[](https://pypi.org/p/Foiled-Again)
|
|
39
|
+
[](https://opensource.org/licenses/MIT)
|
|
40
|
+
|
|
41
|
+
[](https://github.com/j178/prek)
|
|
42
|
+
[](https://github.com/astral-sh/ruff)
|
|
43
|
+
[](https://github.com/astral-sh/ty)
|
|
44
|
+
|
|
45
|
+
[](https://ci.codeberg.org/repos/15232)
|
|
46
|
+
|
|
47
|
+
A simple cli tool to collect and track pricing of TCG cards.
|
|
48
|
+
|
|
49
|
+
## Installation
|
|
50
|
+
|
|
51
|
+
### Pipx
|
|
52
|
+
|
|
53
|
+
1. Ensure you have [Pipx](https://pipx.pypa.io/stable/) installed: `pipx --version`
|
|
54
|
+
2. Install the project: `pipx install Foiled-Again`
|
|
55
|
+
|
|
56
|
+
## Usage
|
|
57
|
+
|
|
58
|
+
<details><summary>foiled-again Commands</summary>
|
|
59
|
+
|
|
60
|
+
<!-- RICH-CODEX hide_command: true -->
|
|
61
|
+

|
|
62
|
+
|
|
63
|
+
</details>
|
|
64
|
+
<details><summary>foiled-again add</summary>
|
|
65
|
+
|
|
66
|
+
<!-- RICH-CODEX hide_command: true -->
|
|
67
|
+

|
|
68
|
+
|
|
69
|
+
</details>
|
|
70
|
+
<details><summary>foiled-again view</summary>
|
|
71
|
+
|
|
72
|
+
<!-- RICH-CODEX hide_command: true -->
|
|
73
|
+

|
|
74
|
+
|
|
75
|
+
</details>
|
|
76
|
+
<details><summary>foiled-again refresh</summary>
|
|
77
|
+
|
|
78
|
+
<!-- RICH-CODEX hide_command: true -->
|
|
79
|
+

|
|
80
|
+
|
|
81
|
+
</details>
|
|
82
|
+
<details><summary>foiled-again summary</summary>
|
|
83
|
+
|
|
84
|
+
<!-- RICH-CODEX hide_command: true -->
|
|
85
|
+

|
|
86
|
+
|
|
87
|
+
</details>
|
|
88
|
+
<details><summary>foiled-again settings</summary>
|
|
89
|
+
|
|
90
|
+
<!-- RICH-CODEX hide_command: true -->
|
|
91
|
+

|
|
92
|
+
|
|
93
|
+
</details>
|
|
94
|
+
|
|
95
|
+
## Socials
|
|
96
|
+
|
|
97
|
+
[](https://fosstodon.org/@BuriedInCode)
|
|
98
|
+
[](https://matrix.to/#/#The-Dev-Environment:matrix.org)
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
# Foiled Again
|
|
2
|
+
|
|
3
|
+
[](https://pypi.org/p/Foiled-Again)
|
|
4
|
+
[](https://pypi.org/p/Foiled-Again)
|
|
5
|
+
[](https://pypi.org/p/Foiled-Again)
|
|
6
|
+
[](https://opensource.org/licenses/MIT)
|
|
7
|
+
|
|
8
|
+
[](https://github.com/j178/prek)
|
|
9
|
+
[](https://github.com/astral-sh/ruff)
|
|
10
|
+
[](https://github.com/astral-sh/ty)
|
|
11
|
+
|
|
12
|
+
[](https://ci.codeberg.org/repos/15232)
|
|
13
|
+
|
|
14
|
+
A simple cli tool to collect and track pricing of TCG cards.
|
|
15
|
+
|
|
16
|
+
## Installation
|
|
17
|
+
|
|
18
|
+
### Pipx
|
|
19
|
+
|
|
20
|
+
1. Ensure you have [Pipx](https://pipx.pypa.io/stable/) installed: `pipx --version`
|
|
21
|
+
2. Install the project: `pipx install Foiled-Again`
|
|
22
|
+
|
|
23
|
+
## Usage
|
|
24
|
+
|
|
25
|
+
<details><summary>foiled-again Commands</summary>
|
|
26
|
+
|
|
27
|
+
<!-- RICH-CODEX hide_command: true -->
|
|
28
|
+

|
|
29
|
+
|
|
30
|
+
</details>
|
|
31
|
+
<details><summary>foiled-again add</summary>
|
|
32
|
+
|
|
33
|
+
<!-- RICH-CODEX hide_command: true -->
|
|
34
|
+

|
|
35
|
+
|
|
36
|
+
</details>
|
|
37
|
+
<details><summary>foiled-again view</summary>
|
|
38
|
+
|
|
39
|
+
<!-- RICH-CODEX hide_command: true -->
|
|
40
|
+

|
|
41
|
+
|
|
42
|
+
</details>
|
|
43
|
+
<details><summary>foiled-again refresh</summary>
|
|
44
|
+
|
|
45
|
+
<!-- RICH-CODEX hide_command: true -->
|
|
46
|
+

|
|
47
|
+
|
|
48
|
+
</details>
|
|
49
|
+
<details><summary>foiled-again summary</summary>
|
|
50
|
+
|
|
51
|
+
<!-- RICH-CODEX hide_command: true -->
|
|
52
|
+

|
|
53
|
+
|
|
54
|
+
</details>
|
|
55
|
+
<details><summary>foiled-again settings</summary>
|
|
56
|
+
|
|
57
|
+
<!-- RICH-CODEX hide_command: true -->
|
|
58
|
+

|
|
59
|
+
|
|
60
|
+
</details>
|
|
61
|
+
|
|
62
|
+
## Socials
|
|
63
|
+
|
|
64
|
+
[](https://fosstodon.org/@BuriedInCode)
|
|
65
|
+
[](https://matrix.to/#/#The-Dev-Environment:matrix.org)
|
|
@@ -0,0 +1,130 @@
|
|
|
1
|
+
<svg class="rich-terminal" viewBox="0 0 1104 489.2" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<!-- Generated with Rich https://www.textualize.io -->
|
|
3
|
+
<style>
|
|
4
|
+
|
|
5
|
+
@font-face {
|
|
6
|
+
font-family: "Fira Code";
|
|
7
|
+
src: local("FiraCode-Regular"),
|
|
8
|
+
url("https://cdnjs.cloudflare.com/ajax/libs/firacode/6.2.0/woff2/FiraCode-Regular.woff2") format("woff2"),
|
|
9
|
+
url("https://cdnjs.cloudflare.com/ajax/libs/firacode/6.2.0/woff/FiraCode-Regular.woff") format("woff");
|
|
10
|
+
font-style: normal;
|
|
11
|
+
font-weight: 400;
|
|
12
|
+
}
|
|
13
|
+
@font-face {
|
|
14
|
+
font-family: "Fira Code";
|
|
15
|
+
src: local("FiraCode-Bold"),
|
|
16
|
+
url("https://cdnjs.cloudflare.com/ajax/libs/firacode/6.2.0/woff2/FiraCode-Bold.woff2") format("woff2"),
|
|
17
|
+
url("https://cdnjs.cloudflare.com/ajax/libs/firacode/6.2.0/woff/FiraCode-Bold.woff") format("woff");
|
|
18
|
+
font-style: bold;
|
|
19
|
+
font-weight: 700;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.terminal-3033592627-matrix {
|
|
23
|
+
font-family: Fira Code, monospace;
|
|
24
|
+
font-size: 20px;
|
|
25
|
+
line-height: 24.4px;
|
|
26
|
+
font-variant-east-asian: full-width;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.terminal-3033592627-title {
|
|
30
|
+
font-size: 18px;
|
|
31
|
+
font-weight: bold;
|
|
32
|
+
font-family: arial;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.terminal-3033592627-r1 { fill: #c5c8c6;font-weight: bold }
|
|
36
|
+
.terminal-3033592627-r2 { fill: #c5c8c6 }
|
|
37
|
+
.terminal-3033592627-r3 { fill: #d0b344;font-weight: bold }
|
|
38
|
+
.terminal-3033592627-r4 { fill: #868887 }
|
|
39
|
+
.terminal-3033592627-r5 { fill: #68a0b3;font-weight: bold }
|
|
40
|
+
</style>
|
|
41
|
+
|
|
42
|
+
<defs>
|
|
43
|
+
<clipPath id="terminal-3033592627-clip-terminal">
|
|
44
|
+
<rect x="0" y="0" width="1084.8" height="438.2" />
|
|
45
|
+
</clipPath>
|
|
46
|
+
<clipPath id="terminal-3033592627-line-0">
|
|
47
|
+
<rect x="0" y="1.5" width="1085.8" height="24.65"/>
|
|
48
|
+
</clipPath>
|
|
49
|
+
<clipPath id="terminal-3033592627-line-1">
|
|
50
|
+
<rect x="0" y="25.9" width="1085.8" height="24.65"/>
|
|
51
|
+
</clipPath>
|
|
52
|
+
<clipPath id="terminal-3033592627-line-2">
|
|
53
|
+
<rect x="0" y="50.3" width="1085.8" height="24.65"/>
|
|
54
|
+
</clipPath>
|
|
55
|
+
<clipPath id="terminal-3033592627-line-3">
|
|
56
|
+
<rect x="0" y="74.7" width="1085.8" height="24.65"/>
|
|
57
|
+
</clipPath>
|
|
58
|
+
<clipPath id="terminal-3033592627-line-4">
|
|
59
|
+
<rect x="0" y="99.1" width="1085.8" height="24.65"/>
|
|
60
|
+
</clipPath>
|
|
61
|
+
<clipPath id="terminal-3033592627-line-5">
|
|
62
|
+
<rect x="0" y="123.5" width="1085.8" height="24.65"/>
|
|
63
|
+
</clipPath>
|
|
64
|
+
<clipPath id="terminal-3033592627-line-6">
|
|
65
|
+
<rect x="0" y="147.9" width="1085.8" height="24.65"/>
|
|
66
|
+
</clipPath>
|
|
67
|
+
<clipPath id="terminal-3033592627-line-7">
|
|
68
|
+
<rect x="0" y="172.3" width="1085.8" height="24.65"/>
|
|
69
|
+
</clipPath>
|
|
70
|
+
<clipPath id="terminal-3033592627-line-8">
|
|
71
|
+
<rect x="0" y="196.7" width="1085.8" height="24.65"/>
|
|
72
|
+
</clipPath>
|
|
73
|
+
<clipPath id="terminal-3033592627-line-9">
|
|
74
|
+
<rect x="0" y="221.1" width="1085.8" height="24.65"/>
|
|
75
|
+
</clipPath>
|
|
76
|
+
<clipPath id="terminal-3033592627-line-10">
|
|
77
|
+
<rect x="0" y="245.5" width="1085.8" height="24.65"/>
|
|
78
|
+
</clipPath>
|
|
79
|
+
<clipPath id="terminal-3033592627-line-11">
|
|
80
|
+
<rect x="0" y="269.9" width="1085.8" height="24.65"/>
|
|
81
|
+
</clipPath>
|
|
82
|
+
<clipPath id="terminal-3033592627-line-12">
|
|
83
|
+
<rect x="0" y="294.3" width="1085.8" height="24.65"/>
|
|
84
|
+
</clipPath>
|
|
85
|
+
<clipPath id="terminal-3033592627-line-13">
|
|
86
|
+
<rect x="0" y="318.7" width="1085.8" height="24.65"/>
|
|
87
|
+
</clipPath>
|
|
88
|
+
<clipPath id="terminal-3033592627-line-14">
|
|
89
|
+
<rect x="0" y="343.1" width="1085.8" height="24.65"/>
|
|
90
|
+
</clipPath>
|
|
91
|
+
<clipPath id="terminal-3033592627-line-15">
|
|
92
|
+
<rect x="0" y="367.5" width="1085.8" height="24.65"/>
|
|
93
|
+
</clipPath>
|
|
94
|
+
<clipPath id="terminal-3033592627-line-16">
|
|
95
|
+
<rect x="0" y="391.9" width="1085.8" height="24.65"/>
|
|
96
|
+
</clipPath>
|
|
97
|
+
</defs>
|
|
98
|
+
|
|
99
|
+
<rect fill="#292929" stroke="rgba(255,255,255,0.35)" stroke-width="1" x="1" y="1" width="1102" height="487.2" rx="8"/>
|
|
100
|
+
<g transform="translate(26,22)">
|
|
101
|
+
<circle cx="0" cy="0" r="7" fill="#ff5f57"/>
|
|
102
|
+
<circle cx="22" cy="0" r="7" fill="#febc2e"/>
|
|
103
|
+
<circle cx="44" cy="0" r="7" fill="#28c840"/>
|
|
104
|
+
</g>
|
|
105
|
+
|
|
106
|
+
<g transform="translate(9, 41)" clip-path="url(#terminal-3033592627-clip-terminal)">
|
|
107
|
+
|
|
108
|
+
<g class="terminal-3033592627-matrix">
|
|
109
|
+
<text class="terminal-3033592627-r2" x="1085.8" y="20" textLength="12.2" clip-path="url(#terminal-3033592627-line-0)">
|
|
110
|
+
</text><text class="terminal-3033592627-r3" x="12.2" y="44.4" textLength="85.4" clip-path="url(#terminal-3033592627-line-1)">Usage: </text><text class="terminal-3033592627-r1" x="97.6" y="44.4" textLength="488" clip-path="url(#terminal-3033592627-line-1)">foiled-again [OPTIONS] COMMAND [ARGS]...</text><text class="terminal-3033592627-r2" x="1085.8" y="44.4" textLength="12.2" clip-path="url(#terminal-3033592627-line-1)">
|
|
111
|
+
</text><text class="terminal-3033592627-r2" x="1085.8" y="68.8" textLength="12.2" clip-path="url(#terminal-3033592627-line-2)">
|
|
112
|
+
</text><text class="terminal-3033592627-r4" x="0" y="93.2" textLength="24.4" clip-path="url(#terminal-3033592627-line-3)">╭─</text><text class="terminal-3033592627-r4" x="24.4" y="93.2" textLength="109.8" clip-path="url(#terminal-3033592627-line-3)"> Options </text><text class="terminal-3033592627-r4" x="134.2" y="93.2" textLength="927.2" clip-path="url(#terminal-3033592627-line-3)">────────────────────────────────────────────────────────────────────────────</text><text class="terminal-3033592627-r4" x="1061.4" y="93.2" textLength="24.4" clip-path="url(#terminal-3033592627-line-3)">─╮</text><text class="terminal-3033592627-r2" x="1085.8" y="93.2" textLength="12.2" clip-path="url(#terminal-3033592627-line-3)">
|
|
113
|
+
</text><text class="terminal-3033592627-r4" x="0" y="117.6" textLength="12.2" clip-path="url(#terminal-3033592627-line-4)">│</text><text class="terminal-3033592627-r5" x="24.4" y="117.6" textLength="12.2" clip-path="url(#terminal-3033592627-line-4)">-</text><text class="terminal-3033592627-r5" x="36.6" y="117.6" textLength="97.6" clip-path="url(#terminal-3033592627-line-4)">-version</text><text class="terminal-3033592627-r2" x="134.2" y="117.6" textLength="939.4" clip-path="url(#terminal-3033592627-line-4)">                     Show the version and exit.                              </text><text class="terminal-3033592627-r4" x="1073.6" y="117.6" textLength="12.2" clip-path="url(#terminal-3033592627-line-4)">│</text><text class="terminal-3033592627-r2" x="1085.8" y="117.6" textLength="12.2" clip-path="url(#terminal-3033592627-line-4)">
|
|
114
|
+
</text><text class="terminal-3033592627-r4" x="0" y="142" textLength="12.2" clip-path="url(#terminal-3033592627-line-5)">│</text><text class="terminal-3033592627-r5" x="24.4" y="142" textLength="12.2" clip-path="url(#terminal-3033592627-line-5)">-</text><text class="terminal-3033592627-r5" x="36.6" y="142" textLength="97.6" clip-path="url(#terminal-3033592627-line-5)">-install</text><text class="terminal-3033592627-r5" x="134.2" y="142" textLength="134.2" clip-path="url(#terminal-3033592627-line-5)">-completion</text><text class="terminal-3033592627-r2" x="268.4" y="142" textLength="805.2" clip-path="url(#terminal-3033592627-line-5)">          Install completion for the current shell.               </text><text class="terminal-3033592627-r4" x="1073.6" y="142" textLength="12.2" clip-path="url(#terminal-3033592627-line-5)">│</text><text class="terminal-3033592627-r2" x="1085.8" y="142" textLength="12.2" clip-path="url(#terminal-3033592627-line-5)">
|
|
115
|
+
</text><text class="terminal-3033592627-r4" x="0" y="166.4" textLength="12.2" clip-path="url(#terminal-3033592627-line-6)">│</text><text class="terminal-3033592627-r5" x="24.4" y="166.4" textLength="12.2" clip-path="url(#terminal-3033592627-line-6)">-</text><text class="terminal-3033592627-r5" x="36.6" y="166.4" textLength="61" clip-path="url(#terminal-3033592627-line-6)">-show</text><text class="terminal-3033592627-r5" x="97.6" y="166.4" textLength="134.2" clip-path="url(#terminal-3033592627-line-6)">-completion</text><text class="terminal-3033592627-r2" x="231.8" y="166.4" textLength="841.8" clip-path="url(#terminal-3033592627-line-6)">             Show completion for the current shell, to copy it or    </text><text class="terminal-3033592627-r4" x="1073.6" y="166.4" textLength="12.2" clip-path="url(#terminal-3033592627-line-6)">│</text><text class="terminal-3033592627-r2" x="1085.8" y="166.4" textLength="12.2" clip-path="url(#terminal-3033592627-line-6)">
|
|
116
|
+
</text><text class="terminal-3033592627-r4" x="0" y="190.8" textLength="12.2" clip-path="url(#terminal-3033592627-line-7)">│</text><text class="terminal-3033592627-r2" x="12.2" y="190.8" textLength="1061.4" clip-path="url(#terminal-3033592627-line-7)">                               customize the installation.                             </text><text class="terminal-3033592627-r4" x="1073.6" y="190.8" textLength="12.2" clip-path="url(#terminal-3033592627-line-7)">│</text><text class="terminal-3033592627-r2" x="1085.8" y="190.8" textLength="12.2" clip-path="url(#terminal-3033592627-line-7)">
|
|
117
|
+
</text><text class="terminal-3033592627-r4" x="0" y="215.2" textLength="12.2" clip-path="url(#terminal-3033592627-line-8)">│</text><text class="terminal-3033592627-r5" x="24.4" y="215.2" textLength="12.2" clip-path="url(#terminal-3033592627-line-8)">-</text><text class="terminal-3033592627-r5" x="36.6" y="215.2" textLength="61" clip-path="url(#terminal-3033592627-line-8)">-help</text><text class="terminal-3033592627-r2" x="97.6" y="215.2" textLength="976" clip-path="url(#terminal-3033592627-line-8)">                        Show this message and exit.                             </text><text class="terminal-3033592627-r4" x="1073.6" y="215.2" textLength="12.2" clip-path="url(#terminal-3033592627-line-8)">│</text><text class="terminal-3033592627-r2" x="1085.8" y="215.2" textLength="12.2" clip-path="url(#terminal-3033592627-line-8)">
|
|
118
|
+
</text><text class="terminal-3033592627-r4" x="0" y="239.6" textLength="1085.8" clip-path="url(#terminal-3033592627-line-9)">╰───────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-3033592627-r2" x="1085.8" y="239.6" textLength="12.2" clip-path="url(#terminal-3033592627-line-9)">
|
|
119
|
+
</text><text class="terminal-3033592627-r4" x="0" y="264" textLength="24.4" clip-path="url(#terminal-3033592627-line-10)">╭─</text><text class="terminal-3033592627-r4" x="24.4" y="264" textLength="122" clip-path="url(#terminal-3033592627-line-10)"> Commands </text><text class="terminal-3033592627-r4" x="146.4" y="264" textLength="915" clip-path="url(#terminal-3033592627-line-10)">───────────────────────────────────────────────────────────────────────────</text><text class="terminal-3033592627-r4" x="1061.4" y="264" textLength="24.4" clip-path="url(#terminal-3033592627-line-10)">─╮</text><text class="terminal-3033592627-r2" x="1085.8" y="264" textLength="12.2" clip-path="url(#terminal-3033592627-line-10)">
|
|
120
|
+
</text><text class="terminal-3033592627-r4" x="0" y="288.4" textLength="12.2" clip-path="url(#terminal-3033592627-line-11)">│</text><text class="terminal-3033592627-r5" x="24.4" y="288.4" textLength="97.6" clip-path="url(#terminal-3033592627-line-11)">add     </text><text class="terminal-3033592627-r4" x="1073.6" y="288.4" textLength="12.2" clip-path="url(#terminal-3033592627-line-11)">│</text><text class="terminal-3033592627-r2" x="1085.8" y="288.4" textLength="12.2" clip-path="url(#terminal-3033592627-line-11)">
|
|
121
|
+
</text><text class="terminal-3033592627-r4" x="0" y="312.8" textLength="12.2" clip-path="url(#terminal-3033592627-line-12)">│</text><text class="terminal-3033592627-r5" x="24.4" y="312.8" textLength="97.6" clip-path="url(#terminal-3033592627-line-12)">refresh </text><text class="terminal-3033592627-r4" x="1073.6" y="312.8" textLength="12.2" clip-path="url(#terminal-3033592627-line-12)">│</text><text class="terminal-3033592627-r2" x="1085.8" y="312.8" textLength="12.2" clip-path="url(#terminal-3033592627-line-12)">
|
|
122
|
+
</text><text class="terminal-3033592627-r4" x="0" y="337.2" textLength="12.2" clip-path="url(#terminal-3033592627-line-13)">│</text><text class="terminal-3033592627-r5" x="24.4" y="337.2" textLength="97.6" clip-path="url(#terminal-3033592627-line-13)">settings</text><text class="terminal-3033592627-r2" x="134.2" y="337.2" textLength="939.4" clip-path="url(#terminal-3033592627-line-13)"> Display app settings and defaults.                                          </text><text class="terminal-3033592627-r4" x="1073.6" y="337.2" textLength="12.2" clip-path="url(#terminal-3033592627-line-13)">│</text><text class="terminal-3033592627-r2" x="1085.8" y="337.2" textLength="12.2" clip-path="url(#terminal-3033592627-line-13)">
|
|
123
|
+
</text><text class="terminal-3033592627-r4" x="0" y="361.6" textLength="12.2" clip-path="url(#terminal-3033592627-line-14)">│</text><text class="terminal-3033592627-r5" x="24.4" y="361.6" textLength="97.6" clip-path="url(#terminal-3033592627-line-14)">summary </text><text class="terminal-3033592627-r4" x="1073.6" y="361.6" textLength="12.2" clip-path="url(#terminal-3033592627-line-14)">│</text><text class="terminal-3033592627-r2" x="1085.8" y="361.6" textLength="12.2" clip-path="url(#terminal-3033592627-line-14)">
|
|
124
|
+
</text><text class="terminal-3033592627-r4" x="0" y="386" textLength="12.2" clip-path="url(#terminal-3033592627-line-15)">│</text><text class="terminal-3033592627-r5" x="24.4" y="386" textLength="97.6" clip-path="url(#terminal-3033592627-line-15)">view    </text><text class="terminal-3033592627-r4" x="1073.6" y="386" textLength="12.2" clip-path="url(#terminal-3033592627-line-15)">│</text><text class="terminal-3033592627-r2" x="1085.8" y="386" textLength="12.2" clip-path="url(#terminal-3033592627-line-15)">
|
|
125
|
+
</text><text class="terminal-3033592627-r4" x="0" y="410.4" textLength="1085.8" clip-path="url(#terminal-3033592627-line-16)">╰───────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-3033592627-r2" x="1085.8" y="410.4" textLength="12.2" clip-path="url(#terminal-3033592627-line-16)">
|
|
126
|
+
</text><text class="terminal-3033592627-r2" x="1085.8" y="434.8" textLength="12.2" clip-path="url(#terminal-3033592627-line-17)">
|
|
127
|
+
</text>
|
|
128
|
+
</g>
|
|
129
|
+
</g>
|
|
130
|
+
</svg>
|
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
<svg class="rich-terminal" viewBox="0 0 1104 440.4" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<!-- Generated with Rich https://www.textualize.io -->
|
|
3
|
+
<style>
|
|
4
|
+
|
|
5
|
+
@font-face {
|
|
6
|
+
font-family: "Fira Code";
|
|
7
|
+
src: local("FiraCode-Regular"),
|
|
8
|
+
url("https://cdnjs.cloudflare.com/ajax/libs/firacode/6.2.0/woff2/FiraCode-Regular.woff2") format("woff2"),
|
|
9
|
+
url("https://cdnjs.cloudflare.com/ajax/libs/firacode/6.2.0/woff/FiraCode-Regular.woff") format("woff");
|
|
10
|
+
font-style: normal;
|
|
11
|
+
font-weight: 400;
|
|
12
|
+
}
|
|
13
|
+
@font-face {
|
|
14
|
+
font-family: "Fira Code";
|
|
15
|
+
src: local("FiraCode-Bold"),
|
|
16
|
+
url("https://cdnjs.cloudflare.com/ajax/libs/firacode/6.2.0/woff2/FiraCode-Bold.woff2") format("woff2"),
|
|
17
|
+
url("https://cdnjs.cloudflare.com/ajax/libs/firacode/6.2.0/woff/FiraCode-Bold.woff") format("woff");
|
|
18
|
+
font-style: bold;
|
|
19
|
+
font-weight: 700;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.terminal-1812367807-matrix {
|
|
23
|
+
font-family: Fira Code, monospace;
|
|
24
|
+
font-size: 20px;
|
|
25
|
+
line-height: 24.4px;
|
|
26
|
+
font-variant-east-asian: full-width;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.terminal-1812367807-title {
|
|
30
|
+
font-size: 18px;
|
|
31
|
+
font-weight: bold;
|
|
32
|
+
font-family: arial;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.terminal-1812367807-r1 { fill: #c5c8c6;font-weight: bold }
|
|
36
|
+
.terminal-1812367807-r2 { fill: #c5c8c6 }
|
|
37
|
+
.terminal-1812367807-r3 { fill: #d0b344;font-weight: bold }
|
|
38
|
+
.terminal-1812367807-r4 { fill: #868887 }
|
|
39
|
+
.terminal-1812367807-r5 { fill: #cc555a }
|
|
40
|
+
.terminal-1812367807-r6 { fill: #8d7b39;font-weight: bold }
|
|
41
|
+
.terminal-1812367807-r7 { fill: #8a4346 }
|
|
42
|
+
.terminal-1812367807-r8 { fill: #68a0b3;font-weight: bold }
|
|
43
|
+
.terminal-1812367807-r9 { fill: #98a84b;font-weight: bold }
|
|
44
|
+
</style>
|
|
45
|
+
|
|
46
|
+
<defs>
|
|
47
|
+
<clipPath id="terminal-1812367807-clip-terminal">
|
|
48
|
+
<rect x="0" y="0" width="1084.8" height="389.4" />
|
|
49
|
+
</clipPath>
|
|
50
|
+
<clipPath id="terminal-1812367807-line-0">
|
|
51
|
+
<rect x="0" y="1.5" width="1085.8" height="24.65"/>
|
|
52
|
+
</clipPath>
|
|
53
|
+
<clipPath id="terminal-1812367807-line-1">
|
|
54
|
+
<rect x="0" y="25.9" width="1085.8" height="24.65"/>
|
|
55
|
+
</clipPath>
|
|
56
|
+
<clipPath id="terminal-1812367807-line-2">
|
|
57
|
+
<rect x="0" y="50.3" width="1085.8" height="24.65"/>
|
|
58
|
+
</clipPath>
|
|
59
|
+
<clipPath id="terminal-1812367807-line-3">
|
|
60
|
+
<rect x="0" y="74.7" width="1085.8" height="24.65"/>
|
|
61
|
+
</clipPath>
|
|
62
|
+
<clipPath id="terminal-1812367807-line-4">
|
|
63
|
+
<rect x="0" y="99.1" width="1085.8" height="24.65"/>
|
|
64
|
+
</clipPath>
|
|
65
|
+
<clipPath id="terminal-1812367807-line-5">
|
|
66
|
+
<rect x="0" y="123.5" width="1085.8" height="24.65"/>
|
|
67
|
+
</clipPath>
|
|
68
|
+
<clipPath id="terminal-1812367807-line-6">
|
|
69
|
+
<rect x="0" y="147.9" width="1085.8" height="24.65"/>
|
|
70
|
+
</clipPath>
|
|
71
|
+
<clipPath id="terminal-1812367807-line-7">
|
|
72
|
+
<rect x="0" y="172.3" width="1085.8" height="24.65"/>
|
|
73
|
+
</clipPath>
|
|
74
|
+
<clipPath id="terminal-1812367807-line-8">
|
|
75
|
+
<rect x="0" y="196.7" width="1085.8" height="24.65"/>
|
|
76
|
+
</clipPath>
|
|
77
|
+
<clipPath id="terminal-1812367807-line-9">
|
|
78
|
+
<rect x="0" y="221.1" width="1085.8" height="24.65"/>
|
|
79
|
+
</clipPath>
|
|
80
|
+
<clipPath id="terminal-1812367807-line-10">
|
|
81
|
+
<rect x="0" y="245.5" width="1085.8" height="24.65"/>
|
|
82
|
+
</clipPath>
|
|
83
|
+
<clipPath id="terminal-1812367807-line-11">
|
|
84
|
+
<rect x="0" y="269.9" width="1085.8" height="24.65"/>
|
|
85
|
+
</clipPath>
|
|
86
|
+
<clipPath id="terminal-1812367807-line-12">
|
|
87
|
+
<rect x="0" y="294.3" width="1085.8" height="24.65"/>
|
|
88
|
+
</clipPath>
|
|
89
|
+
<clipPath id="terminal-1812367807-line-13">
|
|
90
|
+
<rect x="0" y="318.7" width="1085.8" height="24.65"/>
|
|
91
|
+
</clipPath>
|
|
92
|
+
<clipPath id="terminal-1812367807-line-14">
|
|
93
|
+
<rect x="0" y="343.1" width="1085.8" height="24.65"/>
|
|
94
|
+
</clipPath>
|
|
95
|
+
</defs>
|
|
96
|
+
|
|
97
|
+
<rect fill="#292929" stroke="rgba(255,255,255,0.35)" stroke-width="1" x="1" y="1" width="1102" height="438.4" rx="8"/>
|
|
98
|
+
<g transform="translate(26,22)">
|
|
99
|
+
<circle cx="0" cy="0" r="7" fill="#ff5f57"/>
|
|
100
|
+
<circle cx="22" cy="0" r="7" fill="#febc2e"/>
|
|
101
|
+
<circle cx="44" cy="0" r="7" fill="#28c840"/>
|
|
102
|
+
</g>
|
|
103
|
+
|
|
104
|
+
<g transform="translate(9, 41)" clip-path="url(#terminal-1812367807-clip-terminal)">
|
|
105
|
+
|
|
106
|
+
<g class="terminal-1812367807-matrix">
|
|
107
|
+
<text class="terminal-1812367807-r2" x="1085.8" y="20" textLength="12.2" clip-path="url(#terminal-1812367807-line-0)">
|
|
108
|
+
</text><text class="terminal-1812367807-r3" x="12.2" y="44.4" textLength="85.4" clip-path="url(#terminal-1812367807-line-1)">Usage: </text><text class="terminal-1812367807-r1" x="97.6" y="44.4" textLength="780.8" clip-path="url(#terminal-1812367807-line-1)">foiled-again add [OPTIONS] GAME:{digimon|pokemon|magic|flesh and</text><text class="terminal-1812367807-r2" x="1085.8" y="44.4" textLength="12.2" clip-path="url(#terminal-1812367807-line-1)">
|
|
109
|
+
</text><text class="terminal-1812367807-r1" x="12.2" y="68.8" textLength="585.6" clip-path="url(#terminal-1812367807-line-2)">                        blood|dragon ball super}</text><text class="terminal-1812367807-r2" x="1085.8" y="68.8" textLength="12.2" clip-path="url(#terminal-1812367807-line-2)">
|
|
110
|
+
</text><text class="terminal-1812367807-r2" x="1085.8" y="93.2" textLength="12.2" clip-path="url(#terminal-1812367807-line-3)">
|
|
111
|
+
</text><text class="terminal-1812367807-r4" x="0" y="117.6" textLength="24.4" clip-path="url(#terminal-1812367807-line-4)">╭─</text><text class="terminal-1812367807-r4" x="24.4" y="117.6" textLength="134.2" clip-path="url(#terminal-1812367807-line-4)"> Arguments </text><text class="terminal-1812367807-r4" x="158.6" y="117.6" textLength="902.8" clip-path="url(#terminal-1812367807-line-4)">──────────────────────────────────────────────────────────────────────────</text><text class="terminal-1812367807-r4" x="1061.4" y="117.6" textLength="24.4" clip-path="url(#terminal-1812367807-line-4)">─╮</text><text class="terminal-1812367807-r2" x="1085.8" y="117.6" textLength="12.2" clip-path="url(#terminal-1812367807-line-4)">
|
|
112
|
+
</text><text class="terminal-1812367807-r4" x="0" y="142" textLength="12.2" clip-path="url(#terminal-1812367807-line-5)">│</text><text class="terminal-1812367807-r5" x="24.4" y="142" textLength="12.2" clip-path="url(#terminal-1812367807-line-5)">*</text><text class="terminal-1812367807-r2" x="36.6" y="142" textLength="170.8" clip-path="url(#terminal-1812367807-line-5)">    game      </text><text class="terminal-1812367807-r3" x="207.4" y="142" textLength="158.6" clip-path="url(#terminal-1812367807-line-5)">GAME:{digimon</text><text class="terminal-1812367807-r6" x="366" y="142" textLength="12.2" clip-path="url(#terminal-1812367807-line-5)">|</text><text class="terminal-1812367807-r3" x="378.2" y="142" textLength="85.4" clip-path="url(#terminal-1812367807-line-5)">pokemon</text><text class="terminal-1812367807-r6" x="463.6" y="142" textLength="12.2" clip-path="url(#terminal-1812367807-line-5)">|</text><text class="terminal-1812367807-r3" x="475.8" y="142" textLength="61" clip-path="url(#terminal-1812367807-line-5)">magic</text><text class="terminal-1812367807-r6" x="536.8" y="142" textLength="12.2" clip-path="url(#terminal-1812367807-line-5)">|</text><text class="terminal-1812367807-r3" x="549" y="142" textLength="73.2" clip-path="url(#terminal-1812367807-line-5)">flesh </text><text class="terminal-1812367807-r7" x="646.6" y="142" textLength="122" clip-path="url(#terminal-1812367807-line-5)">[required]</text><text class="terminal-1812367807-r4" x="1073.6" y="142" textLength="12.2" clip-path="url(#terminal-1812367807-line-5)">│</text><text class="terminal-1812367807-r2" x="1085.8" y="142" textLength="12.2" clip-path="url(#terminal-1812367807-line-5)">
|
|
113
|
+
</text><text class="terminal-1812367807-r4" x="0" y="166.4" textLength="12.2" clip-path="url(#terminal-1812367807-line-6)">│</text><text class="terminal-1812367807-r3" x="207.4" y="166.4" textLength="109.8" clip-path="url(#terminal-1812367807-line-6)">and blood</text><text class="terminal-1812367807-r6" x="317.2" y="166.4" textLength="12.2" clip-path="url(#terminal-1812367807-line-6)">|</text><text class="terminal-1812367807-r3" x="329.4" y="166.4" textLength="292.8" clip-path="url(#terminal-1812367807-line-6)">dragon ball super}      </text><text class="terminal-1812367807-r4" x="1073.6" y="166.4" textLength="12.2" clip-path="url(#terminal-1812367807-line-6)">│</text><text class="terminal-1812367807-r2" x="1085.8" y="166.4" textLength="12.2" clip-path="url(#terminal-1812367807-line-6)">
|
|
114
|
+
</text><text class="terminal-1812367807-r4" x="0" y="190.8" textLength="1085.8" clip-path="url(#terminal-1812367807-line-7)">╰───────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-1812367807-r2" x="1085.8" y="190.8" textLength="12.2" clip-path="url(#terminal-1812367807-line-7)">
|
|
115
|
+
</text><text class="terminal-1812367807-r4" x="0" y="215.2" textLength="24.4" clip-path="url(#terminal-1812367807-line-8)">╭─</text><text class="terminal-1812367807-r4" x="24.4" y="215.2" textLength="109.8" clip-path="url(#terminal-1812367807-line-8)"> Options </text><text class="terminal-1812367807-r4" x="134.2" y="215.2" textLength="927.2" clip-path="url(#terminal-1812367807-line-8)">────────────────────────────────────────────────────────────────────────────</text><text class="terminal-1812367807-r4" x="1061.4" y="215.2" textLength="24.4" clip-path="url(#terminal-1812367807-line-8)">─╮</text><text class="terminal-1812367807-r2" x="1085.8" y="215.2" textLength="12.2" clip-path="url(#terminal-1812367807-line-8)">
|
|
116
|
+
</text><text class="terminal-1812367807-r4" x="0" y="239.6" textLength="12.2" clip-path="url(#terminal-1812367807-line-9)">│</text><text class="terminal-1812367807-r5" x="24.4" y="239.6" textLength="12.2" clip-path="url(#terminal-1812367807-line-9)">*</text><text class="terminal-1812367807-r8" x="61" y="239.6" textLength="12.2" clip-path="url(#terminal-1812367807-line-9)">-</text><text class="terminal-1812367807-r8" x="73.2" y="239.6" textLength="85.4" clip-path="url(#terminal-1812367807-line-9)">-number</text><text class="terminal-1812367807-r9" x="207.4" y="239.6" textLength="24.4" clip-path="url(#terminal-1812367807-line-9)">-n</text><text class="terminal-1812367807-r3" x="305" y="239.6" textLength="85.4" clip-path="url(#terminal-1812367807-line-9)">TEXT   </text><text class="terminal-1812367807-r7" x="414.8" y="239.6" textLength="122" clip-path="url(#terminal-1812367807-line-9)">[required]</text><text class="terminal-1812367807-r4" x="1073.6" y="239.6" textLength="12.2" clip-path="url(#terminal-1812367807-line-9)">│</text><text class="terminal-1812367807-r2" x="1085.8" y="239.6" textLength="12.2" clip-path="url(#terminal-1812367807-line-9)">
|
|
117
|
+
</text><text class="terminal-1812367807-r4" x="0" y="264" textLength="12.2" clip-path="url(#terminal-1812367807-line-10)">│</text><text class="terminal-1812367807-r8" x="61" y="264" textLength="12.2" clip-path="url(#terminal-1812367807-line-10)">-</text><text class="terminal-1812367807-r8" x="73.2" y="264" textLength="48.8" clip-path="url(#terminal-1812367807-line-10)">-set</text><text class="terminal-1812367807-r8" x="122" y="264" textLength="61" clip-path="url(#terminal-1812367807-line-10)">-code</text><text class="terminal-1812367807-r9" x="207.4" y="264" textLength="24.4" clip-path="url(#terminal-1812367807-line-10)">-c</text><text class="terminal-1812367807-r3" x="305" y="264" textLength="85.4" clip-path="url(#terminal-1812367807-line-10)">TEXT   </text><text class="terminal-1812367807-r4" x="1073.6" y="264" textLength="12.2" clip-path="url(#terminal-1812367807-line-10)">│</text><text class="terminal-1812367807-r2" x="1085.8" y="264" textLength="12.2" clip-path="url(#terminal-1812367807-line-10)">
|
|
118
|
+
</text><text class="terminal-1812367807-r4" x="0" y="288.4" textLength="12.2" clip-path="url(#terminal-1812367807-line-11)">│</text><text class="terminal-1812367807-r8" x="61" y="288.4" textLength="12.2" clip-path="url(#terminal-1812367807-line-11)">-</text><text class="terminal-1812367807-r8" x="73.2" y="288.4" textLength="48.8" clip-path="url(#terminal-1812367807-line-11)">-set</text><text class="terminal-1812367807-r8" x="122" y="288.4" textLength="61" clip-path="url(#terminal-1812367807-line-11)">-name</text><text class="terminal-1812367807-r9" x="207.4" y="288.4" textLength="24.4" clip-path="url(#terminal-1812367807-line-11)">-s</text><text class="terminal-1812367807-r3" x="305" y="288.4" textLength="85.4" clip-path="url(#terminal-1812367807-line-11)">TEXT   </text><text class="terminal-1812367807-r4" x="1073.6" y="288.4" textLength="12.2" clip-path="url(#terminal-1812367807-line-11)">│</text><text class="terminal-1812367807-r2" x="1085.8" y="288.4" textLength="12.2" clip-path="url(#terminal-1812367807-line-11)">
|
|
119
|
+
</text><text class="terminal-1812367807-r4" x="0" y="312.8" textLength="12.2" clip-path="url(#terminal-1812367807-line-12)">│</text><text class="terminal-1812367807-r8" x="61" y="312.8" textLength="12.2" clip-path="url(#terminal-1812367807-line-12)">-</text><text class="terminal-1812367807-r8" x="73.2" y="312.8" textLength="109.8" clip-path="url(#terminal-1812367807-line-12)">-quantity</text><text class="terminal-1812367807-r9" x="207.4" y="312.8" textLength="24.4" clip-path="url(#terminal-1812367807-line-12)">-q</text><text class="terminal-1812367807-r3" x="305" y="312.8" textLength="85.4" clip-path="url(#terminal-1812367807-line-12)">INTEGER</text><text class="terminal-1812367807-r4" x="414.8" y="312.8" textLength="146.4" clip-path="url(#terminal-1812367807-line-12)">[default: 1]</text><text class="terminal-1812367807-r4" x="1073.6" y="312.8" textLength="12.2" clip-path="url(#terminal-1812367807-line-12)">│</text><text class="terminal-1812367807-r2" x="1085.8" y="312.8" textLength="12.2" clip-path="url(#terminal-1812367807-line-12)">
|
|
120
|
+
</text><text class="terminal-1812367807-r4" x="0" y="337.2" textLength="12.2" clip-path="url(#terminal-1812367807-line-13)">│</text><text class="terminal-1812367807-r8" x="61" y="337.2" textLength="12.2" clip-path="url(#terminal-1812367807-line-13)">-</text><text class="terminal-1812367807-r8" x="73.2" y="337.2" textLength="61" clip-path="url(#terminal-1812367807-line-13)">-help</text><text class="terminal-1812367807-r2" x="390.4" y="337.2" textLength="683.2" clip-path="url(#terminal-1812367807-line-13)">  Show this message and exit.                           </text><text class="terminal-1812367807-r4" x="1073.6" y="337.2" textLength="12.2" clip-path="url(#terminal-1812367807-line-13)">│</text><text class="terminal-1812367807-r2" x="1085.8" y="337.2" textLength="12.2" clip-path="url(#terminal-1812367807-line-13)">
|
|
121
|
+
</text><text class="terminal-1812367807-r4" x="0" y="361.6" textLength="1085.8" clip-path="url(#terminal-1812367807-line-14)">╰───────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-1812367807-r2" x="1085.8" y="361.6" textLength="12.2" clip-path="url(#terminal-1812367807-line-14)">
|
|
122
|
+
</text><text class="terminal-1812367807-r2" x="1085.8" y="386" textLength="12.2" clip-path="url(#terminal-1812367807-line-15)">
|
|
123
|
+
</text>
|
|
124
|
+
</g>
|
|
125
|
+
</g>
|
|
126
|
+
</svg>
|