Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/justinhoward/misc-scripts
Scripts I created to help my daily workflow
https://github.com/justinhoward/misc-scripts
Last synced: 2 months ago
JSON representation
Scripts I created to help my daily workflow
- Host: GitHub
- URL: https://github.com/justinhoward/misc-scripts
- Owner: justinhoward
- License: mit
- Created: 2017-07-26T04:28:22.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2024-06-24T23:13:57.000Z (7 months ago)
- Last Synced: 2024-10-12T03:52:59.193Z (3 months ago)
- Language: Shell
- Homepage:
- Size: 151 KB
- Stars: 2
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Justin's Miscellaneous Scripts
An assortment of various command line scripts I created to help my daily
workflow. Also, just some fun stuff.## Installation
Run `make install` to copy scripts into your `~/bin` directory. You'll need to
have that in your path.Alternatively, run `make link` to create symbolic links to this repository
instead of copying files.### Custom install directory
To install or link to a different directory, set `PREFIX`.
```sh
# Installs scripts to /usr/local/bin
make install PREFIX=/usr/local
```### Install only some scripts
To install only some scripts, specify `BINS`
```sh
# Installs only ssmc and ec2-search
make install BINS='ssmc ec2-search'
```