Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/scarrazza/vai
VAI: valuation of automatic instructions
https://github.com/scarrazza/vai
Last synced: about 1 month ago
JSON representation
VAI: valuation of automatic instructions
- Host: GitHub
- URL: https://github.com/scarrazza/vai
- Owner: scarrazza
- License: gpl-3.0
- Created: 2015-12-30T14:07:05.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2015-12-31T11:43:06.000Z (almost 9 years ago)
- Last Synced: 2023-04-05T22:47:21.448Z (over 1 year ago)
- Language: Python
- Homepage:
- Size: 31.3 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
![Logo](https://github.com/scarrazza/vai/raw/master/extra/logovai.png "Logo VAI")
A simple tool to simplify shell operations when programming.
## Installation
Download the code and install using the setup script:
```Shell
$ python setup.py install
```## Usage
Create a file and place the instructions in comments starting with the ``vai:`` tag, e.g. for latex compilation:
```Latex
% vai: pdflatex mydocument.tex
% vai: bibtex mydocument
% vai: pdflatex mydocument.tex
% vai: pdflatex mydocument.tex
\documentclass{article}
...
```Then run ``vai``:
```Shell
$ vai
```Check the examples folder in this git repository for more examples.