Only homebrew and git

This commit is contained in:
Alex Epstein 2017-08-30 22:41:51 -04:00
parent 3c4461d103
commit dd260be68f
38 changed files with 6 additions and 724 deletions

View File

@ -7,7 +7,7 @@
**Pull Request Checklist:**
- [ ] Have you followed the [guidelines for contributing](https://github.com/alexanderepstein/Bash-Snippets/blob/master/CONTRIBUTING.md)?
- [ ] Have you checked that there aren't other open [pull requests](https://github.com/Homebrew/homebrew-core/pulls) for the same fix or component?
- [ ] Have you checked that there aren't other open [pull requests](https://github.com/alexanderepstein/Bash-Snippets/pulls) for the same fix or component?
- [ ] Have you ran the tests locally with `bats tests`?
-----

View File

@ -375,26 +375,6 @@ brew install bash-snippets --without-all-tools --with-newton --with-weather # sp
</details>
<details>
<summary>Arch Linux (AUR)</summary>
There is an AUR package for bash-snippets located [here](https://aur.archlinux.org/packages/bash-snippets/)
</details>
<details>
<summary>Sparrowhub</summary>
```bash
sparrow plg install [tool]
```
</details>
<details>
<summary>Git Install</summary>
@ -445,8 +425,6 @@ brew upgrade bash-snippets
</details>
<details>
<summary>Git Update</summary>
@ -477,8 +455,6 @@ brew uninstall bash-snippets
</details>
<details>
<summary>Git Uninstall</summary>
@ -508,11 +484,15 @@ cd Bash-Snippets
## Donate
If this project helped you in any way and you feel like buying a broke college kid a cup of coffee
If this project helped you in any way and you feel like supporting me
[![Donate](https://img.shields.io/badge/Donate-Venmo-blue.svg)](https://venmo.com/AlexanderEpstein)
[![Donate](https://img.shields.io/badge/Donate-SquareCash-green.svg)](https://cash.me/$AlexEpstein)
###### BTC: 1PSVVs6EnhdRGhUFb6Dz6EGWKKyHe3xACe
###### ETH: 0x585c4e1aa22d9Cc92d1a6b3fAe0c4a5274b5a884
###### LTC: Lf3SDjkck7iqy5TGn3wqzNvf5LL97JNhGk
#### Inspired by: [Ruby-Scripts](https://github.com/jakewmeyer/Ruby-Scripts)
## License

View File

@ -1,9 +0,0 @@
{
"name" : "cheat",
"description" : "Simple wrapper for cheat script from Bash-Snippets",
"version" : "0.0.4",
"url" : "https://github.com/alexanderepstein/Bash-Snippets#cheat",
"category": "utilities",
"sparrow_version" : "0.2.47",
"doc" : "sparrow.md"
}

View File

@ -1,46 +0,0 @@
# SYNOPSIS
Simple wrapper for `cheat` script from Bash-Snippets.
# INSTALL
$ sparrow plg install cheat
# USAGE
Basic usage:
$ sparrow plg run cheat -- <args>
For example:
$ sparrow plg run cheat -- -i Perl
Run as sparrow task:
$ sparrow project create utils
$ sparrow task add utils cheat-perl cheat
$ sparrow task ini utils/cheat-perl
---
args:
- '-i'
- Perl
- lwp-request
$ sparrow task run utils/cheat-perl
For cheat's arguments description follow [https://github.com/alexanderepstein/Bash-Snippets#cheat](https://github.com/alexanderepstein/Bash-Snippets#cheat)
# Authors
* The author of main script is [Alex Epstein](https://github.com/alexanderepstein)
* The plugin maintainer is [Alexey Melezhik](https://github.com/melezhik/)

View File

@ -1,5 +0,0 @@
#!/bin/bash
bash $story_dir/cheat $(cli_args)

View File

@ -1,9 +0,0 @@
{
"name" : "cloudup",
"description" : "Simple wrapper for cloudup script from Bash-Snippets",
"version" : "0.0.4",
"url" : "https://github.com/alexanderepstein/Bash-Snippets#cloudup",
"category": "utilities",
"sparrow_version" : "0.2.47",
"doc" : "sparrow.md"
}

View File

@ -1,47 +0,0 @@
# SYNOPSIS
Simple wrapper for `cloudup` script from Bash-Snippets.
# INSTALL
$ sparrow plg install cloudup
# USAGE
Basic usage:
$ sparrow plg run cloudup -- <args>
For example:
$ sparrow plg run cloudup -- -p repo1 repo2 repo3
If you need some automation:
$ sparrow project create utils
$ sparrow task add utils backup-top-repos cloudup
$ sparrow task ini utils/backup-top-repos
---
args:
- '-p'
- repo1
- repo2
- repo3
$ sparrow task run utils/backup-top-repos
See parameters description at [https://github.com/alexanderepstein/Bash-Snippets#cloudup](https://github.com/alexanderepstein/Bash-Snippets#cloudup)
# Authors
* The author of main script is [Alex Epstein](https://github.com/alexanderepstein)
* The plugin maintainer is [Alexey Melezhik](https://github.com/melezhik/)

View File

@ -1,5 +0,0 @@
#!/bin/bash
bash $story_dir/cloudup $(cli_args)

View File

@ -1,9 +0,0 @@
{
"name" : "crypt",
"description" : "Simple wrapper for crypt script from Bash-Snippets",
"version" : "0.0.4",
"url" : "https://github.com/alexanderepstein/Bash-Snippets#crypt",
"category": "utilities",
"sparrow_version" : "0.2.47",
"doc" : "sparrow.md"
}

View File

@ -1,42 +0,0 @@
# SYNOPSIS
Simple wrapper for `crypt` script from Bash-Snippets.
# INSTALL
$ sparrow plg install crypt
# USAGE
Basic usage:
$ sparrow plg run crypt -- <args>
Run as sparrow task:
$ sparrow project create utils
$ sparrow task add utils enc-file crypt
$ sparrow task ini utils/enc-file
---
args:
- '-e'
- /tmp/file.txt
- /tmp/file.txt.inc
$ sparrow task run utils/enc-file
For crypt's arguments description follow [https://github.com/alexanderepstein/Bash-Snippets#cheat](https://github.com/alexanderepstein/Bash-Snippets#crypt)
# Authors
* The author of main script is [Alex Epstein](https://github.com/alexanderepstein)
* The plugin maintainer is [Alexey Melezhik](https://github.com/melezhik/)

View File

@ -1,5 +0,0 @@
#!/bin/bash
bash $story_dir/crypt $(cli_args)

View File

@ -1,9 +0,0 @@
{
"name" : "currency",
"description" : "Simple wrapper for currency script from Bash-Snippets",
"version" : "0.0.4",
"url" : "https://github.com/alexanderepstein/Bash-Snippets#currency",
"category": "utilities",
"sparrow_version" : "0.2.47",
"doc" : "sparrow.md"
}

View File

@ -1,46 +0,0 @@
# SYNOPSIS
Simple wrapper for `currency` script from Bash-Snippets.
# INSTALL
$ sparrow plg install currency
# USAGE
Basic usage:
$ sparrow plg run currency -- <args>
For example:
$ sparrow plg run currency -- USD RUB 100
Run as sparrow task:
$ sparrow project create utils
$ sparrow task add utils currency-usd-rub currency
$ sparrow task ini utils/currency-usd-rub
---
args:
- USD
- RUB
- 100
$ sparrow task run utils/currency-usd-rub
For currency's arguments description follow [https://github.com/alexanderepstein/Bash-Snippets#currency](https://github.com/alexanderepstein/Bash-Snippets#currency)
# Authors
* The author of main script is [Alex Epstein](https://github.com/alexanderepstein)
* The plugin maintainer is [Alexey Melezhik](https://github.com/melezhik/)

View File

@ -1,5 +0,0 @@
#!/bin/bash
bash $story_dir/currency $(cli_args)

View File

@ -1,9 +0,0 @@
{
"name" : "geo",
"description" : "Simple wrapper for geo script from Bash-Snippets",
"version" : "0.0.4",
"url" : "https://github.com/alexanderepstein/Bash-Snippets#geo",
"category": "utilities",
"sparrow_version" : "0.2.47",
"doc" : "sparrow.md"
}

View File

@ -1,43 +0,0 @@
# SYNOPSIS
Simple wrapper for `geo` script from Bash-Snippets.
# INSTALL
$ sparrow plg install geo
# USAGE
Basic usage:
$ sparrow plg run geo -- <args>
For example:
$ sparrow plg run geo -- -r -d -m eth0
Run as sparrow task:
$ sparrow project create utils
$ sparrow task add utils geo-data geo
$ sparrow task ini utils/geo-data
---
args:
- '-r'
- '-d'
- '~m' : eth0
$ sparrow task run utils/geo-data
For geo's arguments description follow [https://github.com/alexanderepstein/Bash-Snippets#geo](https://github.com/alexanderepstein/Bash-Snippets#geo)
# Authors
* The author of main script is [Alex Epstein](https://github.com/alexanderepstein)
* The plugin maintainer is [Alexey Melezhik](https://github.com/melezhik/)

View File

@ -1,5 +0,0 @@
#!/bin/bash
bash $story_dir/geo $(cli_args)

View File

@ -1,9 +0,0 @@
{
"name" : "movies",
"description" : "Simple wrapper for movies script from Bash-Snippets",
"version" : "0.0.4",
"url" : "https://github.com/alexanderepstein/Bash-Snippets#movies",
"category": "utilities",
"sparrow_version" : "0.2.47",
"doc" : "sparrow.md"
}

View File

@ -1,44 +0,0 @@
# SYNOPSIS
Simple wrapper for `movies` script from Bash-Snippets.
# INSTALL
$ sparrow plg install movies
# USAGE
Basic usage:
$ sparrow plg run movies -- <args>
For example:
$ sparrow plg run movies -- Argo
Run as sparrow task:
$ sparrow project create utils
$ sparrow task add utils movies-argo movies
$ sparrow task ini utils/movies-argo
---
args:
- Argo
$ sparrow task run utils/movies-argo
For movies's arguments description follow [https://github.com/alexanderepstein/Bash-Snippets#movies](https://github.com/alexanderepstein/Bash-Snippets#movies)
# Authors
* The author of main script is [Alex Epstein](https://github.com/alexanderepstein)
* The plugin maintainer is [Alexey Melezhik](https://github.com/melezhik/)

View File

@ -1,5 +0,0 @@
#!/bin/bash
bash $story_dir/movies $(cli_args)

View File

@ -1,9 +0,0 @@
{
"name" : "qrify",
"description" : "Simple wrapper for qrify script from Bash-Snippets",
"version" : "0.0.4",
"url" : "https://github.com/alexanderepstein/Bash-Snippets#qrify",
"category": "utilities",
"sparrow_version" : "0.2.47",
"doc" : "sparrow.md"
}

View File

@ -1,44 +0,0 @@
# SYNOPSIS
Simple wrapper for `qrify` script from Bash-Snippets.
# INSTALL
$ sparrow plg install qrify
# USAGE
Basic usage:
$ sparrow plg run qrify -- <args>
For example:
$ sparrow plg run qrify -- hello world
Run as sparrow task:
$ sparrow project create utils
$ sparrow task add utils qrify-text qrify
$ sparrow task ini utils/qrify-text
---
args:
- Hello world
$ sparrow task run utils/qrify-text
For qrify's arguments description follow [https://github.com/alexanderepstein/Bash-Snippets#qrify](https://github.com/alexanderepstein/Bash-Snippets#qrify)
# Authors
* The author of main script is [Alex Epstein](https://github.com/alexanderepstein)
* The plugin maintainer is [Alexey Melezhik](https://github.com/melezhik/)

View File

@ -1,5 +0,0 @@
#!/bin/bash
bash $story_dir/qrify $(cli_args)

View File

@ -1,9 +0,0 @@
{
"name" : "short",
"description" : "Simple wrapper for short script from Bash-Snippets",
"version" : "0.0.4",
"url" : "https://github.com/alexanderepstein/Bash-Snippets#short",
"category": "utilities",
"sparrow_version" : "0.2.47",
"doc" : "sparrow.md"
}

View File

@ -1,44 +0,0 @@
# SYNOPSIS
Simple wrapper for `short` script from Bash-Snippets.
# INSTALL
$ sparrow plg install short
# USAGE
Basic usage:
$ sparrow plg run short -- <args>
For example:
$ sparrow plg run short -- tinyurl.com/jhkj
Run as sparrow task:
$ sparrow project create utils
$ sparrow task add utils short-unmusk-jhkj short
$ sparrow task ini utils/short-unmusk-jhkj
---
args:
- tinyurl.com/jhkj
$ sparrow task run utils/short-unmusk-jhkj
For short's arguments description follow [https://github.com/alexanderepstein/Bash-Snippets#short](https://github.com/alexanderepstein/Bash-Snippets#short)
# Authors
* The author of main script is [Alex Epstein](https://github.com/alexanderepstein)
* The plugin maintainer is [Alexey Melezhik](https://github.com/melezhik/)

View File

@ -1,5 +0,0 @@
#!/bin/bash
bash $story_dir/short $(cli_args)

View File

@ -1,9 +0,0 @@
{
"name" : "stocks",
"description" : "Simple wrapper for stocks script from Bash-Snippets",
"version" : "0.0.5",
"url" : "https://github.com/alexanderepstein/Bash-Snippets#stocks",
"category": "utilities",
"sparrow_version" : "0.2.47",
"doc" : "sparrow.md"
}

View File

@ -1,40 +0,0 @@
# SYNOPSIS
Simple wrapper for `stocks` script from Bash-Snippets.
# INSTALL
$ sparrow plg install stocks
# USAGE
Basic usage:
$ sparrow plg run stocks -- <args>
For example:
$ sparrow pl run stocks -- Google
Run as sparrow task:
$ sparrow project create utils
$ sparrow task add utils google-stocks stocks
$ sparrow task ini utils/google-stocks
---
args:
- Google
$ sparrow task run utils/google-stocks
For stocks's arguments description follow [https://github.com/alexanderepstein/Bash-Snippets#stocks](https://github.com/alexanderepstein/Bash-Snippets#stocks)
# Authors
* The author of main script is [Alex Epstein](https://github.com/alexanderepstein)
* The plugin maintainer is [Alexey Melezhik](https://github.com/melezhik/)

View File

@ -1,5 +0,0 @@
#!/bin/bash
bash $story_dir/stocks $(cli_args)

View File

@ -1,9 +0,0 @@
{
"name" : "taste",
"description" : "Simple wrapper for taste script from Bash-Snippets",
"version" : "0.0.4",
"url" : "https://github.com/alexanderepstein/Bash-Snippets#taste",
"category": "utilities",
"sparrow_version" : "0.2.47",
"doc" : "sparrow.md"
}

View File

@ -1,45 +0,0 @@
# SYNOPSIS
Simple wrapper for `taste` script from Bash-Snippets.
# INSTALL
$ sparrow plg install taste
# USAGE
Basic usage:
$ sparrow plg run taste -- <args>
For example:
$ sparrow plg run taste -- -s Red Hot Chili Peppers
Run as sparrow task:
$ sparrow project create utils
$ sparrow task add utils taste-rhcp taste
$ sparrow task ini utils/taste-rhcp
---
args:
- '-s'
- Red Hot Chili Peppers
$ sparrow task run utils/taste-rchp
For taste's arguments description follow [https://github.com/alexanderepstein/Bash-Snippets#taste](https://github.com/alexanderepstein/Bash-Snippets#taste)
# Authors
* The author of main script is [Alex Epstein](https://github.com/alexanderepstein)
* The plugin maintainer is [Alexey Melezhik](https://github.com/melezhik/)

View File

@ -1,5 +0,0 @@
#!/bin/bash
bash $story_dir/taste $(cli_args)

View File

@ -1,9 +0,0 @@
{
"name" : "weather",
"description" : "Simple wrapper for weather script from Bash-Snippets",
"version" : "0.0.4",
"url" : "https://github.com/alexanderepstein/Bash-Snippets#weather",
"category": "utilities",
"sparrow_version" : "0.2.47",
"doc" : "sparrow.md"
}

View File

@ -1,44 +0,0 @@
# SYNOPSIS
Simple wrapper for `weather` script from Bash-Snippets.
# INSTALL
$ sparrow plg install weather
# USAGE
Basic usage:
$ sparrow plg run weather -- <args>
For example:
$ sparrow plg run weather -- Saint-Petersburg
Run as sparrow task:
$ sparrow project create utils
$ sparrow task add utils weather-spb weather
$ sparrow task ini utils/weather-spb
---
args:
- Saint-Petersburg
$ sparrow task run utils/weather-spb
For weather's arguments description follow [https://github.com/alexanderepstein/Bash-Snippets#weather](https://github.com/alexanderepstein/Bash-Snippets#weather)
# Authors
* The author of main script is [Alex Epstein](https://github.com/alexanderepstein)
* The plugin maintainer is [Alexey Melezhik](https://github.com/melezhik/)

View File

@ -1,5 +0,0 @@
#!/bin/bash
bash $story_dir/weather $(cli_args)

View File

@ -1,9 +0,0 @@
{
"name" : "ytview",
"description" : "Simple wrapper for ytview script from Bash-Snippets",
"version" : "0.0.4",
"url" : "https://github.com/alexanderepstein/Bash-Snippets#ytview",
"category": "utilities",
"sparrow_version" : "0.2.47",
"doc" : "sparrow.md"
}

View File

@ -1,45 +0,0 @@
# SYNOPSIS
Simple wrapper for `ytview` script from Bash-Snippets.
# INSTALL
$ sparrow plg install ytview
# USAGE
Basic usage:
$ sparrow plg run ytview -- <args>
For example:
$ sparrow plg run ytview -- -s Family Guy Chicken Fight
Run as sparrow task:
$ sparrow project create utils
$ sparrow task add utils ytview-fg ytview
$ sparrow task ini utils/ytview-fg
---
args:
- '-s'
- Family Guy Chicken Fight
$ sparrow task run utils/ytview-fg
For ytview's arguments description follow [https://github.com/alexanderepstein/Bash-Snippets#ytview](https://github.com/alexanderepstein/Bash-Snippets#ytview)
# Authors
* The author of main script is [Alex Epstein](https://github.com/alexanderepstein)
* The plugin maintainer is [Alexey Melezhik](https://github.com/melezhik/)

View File

@ -1,5 +0,0 @@
#!/bin/bash
bash $story_dir/ytview $(cli_args)