Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/nuri-it/linux-path
- Owner: nuri-it
- License: gpl-3.0
- Created: 2022-02-09T09:19:30.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-02-11T08:35:49.000Z (almost 3 years ago)
- Last Synced: 2024-11-10T12:37:44.144Z (2 months ago)
- Language: Shell
- Size: 16.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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