This commit is contained in:
Andros Fenollosa 2019-01-13 16:19:36 +01:00
parent fcdc63ab57
commit 5720f807eb
3 changed files with 21 additions and 2 deletions

View File

@ -37,3 +37,18 @@ pip3 install --user get-my-pastebin
``` bash
pip3 install --user --upgrade get-my-pastebin
```
## Alias
Optimize with alias in your `.bashrc` or `.zshrc`.
``` bash
alias gpaste='getmypastebin --api-key 123qwe456rty --username example --password 123'
```
Use.
``` bash
gpaste python
```

4
demo.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 34 KiB

View File

@ -1,8 +1,8 @@
from setuptools import setup
setup(
name = 'get-my-pastebin',
py_modules=['get-my-pastebin'],
version = '1.0.9',
py_modules=['get_my_pastebin'],
version = '1.0.10',
python_requires='>3.6',
description = 'Terminal application to find and copy your own Paste for Pastebin.',
author = 'Andros Fenollosa',