A collection of scripts designed to streamline tasks and enhance productivity.
git clone https://github.com/nguyenpanda/.panda_scripts.git
cd .panda_scripts
Open the main.sh
file in a text editor and update the PANDA_SCRIPTS_DIR
variable to point to the directory where you cloned the repository:
source "path/to/.panda_scripts/main.sh"
Replace path/to/.panda_scripts
with the full path to your .panda_scripts
directory.
To ensure the environment variables and aliases are available every time you start a new shell session, add the following lines to your ~/.zshrc
, ~/.bashrc
or ~/.bash_profile
file:
source "path/to/.panda_scripts/main.sh"
Again, replace path/to/.panda_scripts
with the correct path to the .panda_scripts
directory.
After modifying your shell configuration file, apply the changes to your current shell session. You can do this by either restarting your terminal or running the appropriate command
For Zsh:
source `~/.zshrc`
For Bash:
source `~/.bashrc`
For Bash Profile:
source `~/.bash_profile`
To build the .cpp
files located in the src
directory, use the following command. The build process utilizes clang++
with C++20
standards:
make all
The panda_cmd
command lists all files with .sh
and .exe
extensions. Use the following command to explore its features:
panda_cmd --help
The tmpl command (short for template) clones templates into the current directory. To learn more, run:
tmpl --help
This project is licensed under the Apache 2.0 Software License. See the LICENSE file for details.
Author: nguyenpanda