A bash utility that installs scripts and tools to your PATH for easy command-line access. Automatically detects script types (Python, Bash, executables), creates wrapper scripts, and configures your shell environment so you can run tools from anywhere without typing full paths.
git clone https://github.com/yourusername/pathmaker.git
cd pathmaker
chmod +x pathmaker.shInstall a tool:
./pathmaker.sh /path/to/script.py commandnameInstall ShortEcho example:
./pathmaker.sh ~/tools/shortecho.py shortecho
# Now run: shortecho https://example.comInstall any Python script:
./pathmaker.sh /home/user/scripts/myscan.py myscan
# Now run: myscan --helpInstall bash scripts:
./pathmaker.sh /opt/tools/recon.sh recon
# Now run: recon target.comOptions:
<script-path> Path to the script you want to install
<command-name> Name of the command to create
-h, --help Show help message
- Detects script type - Automatically identifies Python, Bash, or executable files
- Creates wrapper - Generates a wrapper script in
~/.local/bin/ - Sets permissions - Makes everything executable
- Configures PATH - Optionally adds
~/.local/bin/to your shell config - Ready to use - Command works globally after sourcing or restarting terminal
For personal use and authorized systems only. Ensure you have permission to modify system paths.