We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e56fcf commit 4ac8a8eCopy full SHA for 4ac8a8e
README.md
@@ -5,6 +5,8 @@ Vim-like macros for bash
5
Usage:
6
=====
7
8
+`$ sudo -H python3 setup.py install` to install.
9
+
10
`$ tbh` to start recording bash commands. `donezo` to stop recording.
11
12
```
setup.py
@@ -0,0 +1,12 @@
1
+#!/usr/bin/env python
2
3
+from distutils.core import setup
4
+setup(name='same-tbh',
+ version='0.1',
+ description='Vim-like macros for bash',
+ author='Raphael Gontijo Lopes',
+ author_email='[email protected]',
+ url='https://github.com/iRapha/same-tbh',
+ scripts=['tbh'],
+ )
0 commit comments