An open API service indexing awesome lists of open source software.

https://github.com/giulioiannelli/ubuntu-scripts

A set of useful Linux shell scripts.
https://github.com/giulioiannelli/ubuntu-scripts

linux shell-scripts

Last synced: about 2 months ago
JSON representation

A set of useful Linux shell scripts.

Awesome Lists containing this project

README

          

# ubuntu-scripts
## installation
In order to install clone the git repo into your desired location (e.g. into `~/.local/scripts`)
```
git clone https://github.com/giulioiannelli/ubuntu-scripts.git ~/.local/scripts
```
Then `cd` into the scripts directory and run the `Makefile`
```
cd ~/.local/scripts
make
```
### symbolic links
The aforementioned procidure will also create all symbolic links into the default `BIN_DIR` path, i.e. `~/.local/bin`.
If the directory does not exists it will be created, but be sure that it is included in the `PATH`
environmental variable, otherwise it will not be possible to run scripts from terminal. To change
the default location simply run `make` with `BIN_DIR` set at will
```
make BIN_DIR=/my/fancy/path
```
## scripts

### stopwatch
This script measures the rime elapsed from the beginning of the execution. To stop and print the elapsed time write `stop`
and press `Enter`.