Mac Bash Aliases

Streamline your macOS workflow with our curated collection of Bash aliases. Save time and boost productivity with these powerful command-line shortcuts.

Getting Started

Bash aliases are shortcuts that help you execute commands more efficiently. By defining aliases in your terminal configuration file, you can save time and keystrokes.

Installation

  1. Step 1: Backup your existing configuration file:

                        
    cp ~/.bash_profile ~/.bash_profile_backup

    # or

    cp ~/.bashrc ~/.bashrc_backup

    # or

    cp ~/.zshrc ~/.zshrc_backup
  2. Step 2: Create my_scripts folder and copy scripts:

                        

    # Manually:

    cd ~ && mkdir my_scripts

    # Then copy the content of /scripts folder inside

    
                          

    # Automatically: # Use one of the provided scripts:

    python installation.py

    # or

    node installation.js
  3. Step 3: Append aliases to your configuration file:

                        
    nano ~/.bash_profile

    # or

    nano ~/.bashrc

    # or

    nano ~/.zshrc
    
                          

    # Alternatively:

    open -e ~/.bash_profile

    # or

    open -e ~/.bashrc

    # or

    open -e ~/.zshrc
  4. Step 4: Reload your Bash configuration:

                        
    source ~/.bash_profile

    # or

    source ~/.bashrc

    # or

    source ~/.zshrc

Aliases List

Contributing

Contributions are welcome! If you have a useful alias or improvement, please follow these steps:

  1. Fork the repository.
  2. Create a new branch: git checkout -b feature/your-feature
  3. Commit your changes: git commit -am 'Add your feature'
  4. Push to the branch: git push origin feature/your-feature
  5. Create a pull request.

Changelog

Changelog

All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog ,
and this project adheres to Semantic Versioning .


[Version 0.1.1] - 2025-01-28

Added

  • Added new script to initialize Express server.