123456789101112131415161718192021222324252627 |
- <html>
- <head>
- <title>bngl.ws</title>
- <style>
- .container {
- margin: auto;
- max-width: 500px;
- }
- </style>
- </head>
- <body>
- <div class="container">
- <h1>bngl.ws</h1>
- <p>
- bngl.ws is a pastebin service that you can access from the command
- line. If you have
- <a href="https://doc.rust-lang.org/cargo/getting-started/installation.html" target="_blank">
- cargo</a> installed, you can install the CLI client by cloning the
- <a href="https://git.sr.ht/~simulacrumparty/bnglws-client" target="_blank">client repo</a>
- and running
- <pre>cargo install --path .</pre>
- Then, you can create snippets by running something like
- <pre>echo 'Hello world' | bngl new "First snippet"</pre>
- </p>
- </div>
- </body>
- </html>
|