Skip to content
/ CmdFusion Public template

CmdFusion automates multiple terminal commands into a single, streamlined command, enhancing efficiency and productivity in your workflow.

License

Notifications You must be signed in to change notification settings

unix-ami/CmdFusion

Folders and files

NameName
Last commit message
Last commit date

Latest commit

f3f8f2a · Sep 21, 2024

History

15 Commits
Sep 21, 2024
Sep 13, 2024
Sep 21, 2024
Sep 21, 2024

Repository files navigation

CmdFusion

💻 the command-line utility that can streamline and simplify complex sequences of commands


Dependenices:

  • You need to have the latest version of python downloaded on your device
  • You can download python from the offical website for free

How to set up:

  1. create a ~/bin/ directory if you don't have one already

  2. add the file cmdfusion.py from above into the ~/bin/ directory

  3. go to the directory in your terminal and run the following command

    chmod +x ~/cmdfusion.py
    

    this wil make the python file executable:

  4. Add the following .zshrc configurations above to your own .zshrc file, making it easier to call the python file (pls note you can alter the function name here to change the terminal alias if desired)

  5. after updating the .zshrc file run the following command to reload your zsh configuration:

    source ~/.zshrc
    
  6. Usage in zsh: Now, you can use the cmdfusion command directly in zsh. For example:

    cmdfusion list_files
    

Here's all the things you can do now:

  • Define Aliases: Users define aliases for their command sequences in a configuration file or via a command-line interface. For example:

    cmdfusion alias mycmd "echo 'Hello' && ls -l && grep 'test'"
    
  • Execute Aliases: Users run the defined alias with a single command:

     cmdfusion mycmd
    
  • Parameter Replacement: Aliases can include placeholders for parameters:

     cmdfusion alias mycmd "echo {greeting} && ls {directory}"
    
  • Execution:

     cmdfusion mycmd --greeting "Hello" --directory "/home/user"
    
  • Chain Commands: Support chaining commands with conditionals:

     cmdfusion alias mycmd "mkdir {dir} && cd {dir} && touch file.txt"
    

About

CmdFusion automates multiple terminal commands into a single, streamlined command, enhancing efficiency and productivity in your workflow.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published