pjsw is a simple and efficient command-line tool to manage projects, making it easy to switch, organize, and retrieve project directories. Ideal for developers who want quick access to their project folders.
- Switch Projects: Quickly navigate to project directories.
- Add Projects: Store project names and paths in a database.
- List All Projects: View all stored projects with paths.
Clone the repository and build the CLI tool:
git clone https://github.com/rishabh-j-23/pjsw.git
cd pjsw
go build -o pjsw
For linux user
git clone https://github.com/rishabh-j-23/pjsw.git
cd pjsw
go build -o pjsw
mv pjsw /opt/pjsw/
chmod 755 /opt/pjsw
in ~/.bashrc file append following at end
export PATH=$PATH:/opt/pjsw/
pjsw help
Prints the list of available commands.
pjsw sw <name>
Copies the cd <projectpath>
command to your clipboard for quick navigation. Paste the copied command in terminal or whichever thing you are using it for.
pjsw add <name> <path>
Adds a project name and path to the database. Use .
for the current directory.
pjsw rm <name>
Removes project from the database.
pjsw getall
Displays all added projects with their names and paths.
Contributions are welcome! Feel free to fork the repository, make changes, and submit a pull request.