Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/nuri-it/linux-path

Add your scripts folder to the PATH in order to run your scripts from anywhere
https://github.com/nuri-it/linux-path

Last synced: 10 days ago
JSON representation

Add your scripts folder to the PATH in order to run your scripts from anywhere

Awesome Lists containing this project

README

        

# linux-path
Add your scripts folder to the PATH in order to run your scripts from anywhere

# What is this?
Running Bash scripts in Linux could be painful.
Everytime you want to run a script you made, you have to cd to the script's location and run in from there.
This simple command helps you running your scripts from whereever location you are.

```
echo 'export PATH="$PATH:"' >> $HOME/.bashrc
```
```
. $HOME/.bashrc