Giter VIP home page Giter VIP logo

autosrc's Introduction

autosrc

Script for zsh/bash to automatically run commands based on which directory you are in. An example of this being useful is managing multiple Python virtual environments.

Installation

zsh

Add to your ~/.zshrc:

source /path/to/autosrc.zsh

bash

Add to your ~/.bashrc:

source /path/to/autosrc.bash

(This is not as well tested since I don't use bash often. Please let me know if you find a bug.)

Usage

Then, create a file called .autosrc in the directory/directories you want to use autosrc. Specify autosrc_enter() and autosrc_exit() functions to be called on enter and exit events.

Here is an example .autosrc file for Python venv:

# Called when you first enter the directory (or its children)
autosrc_enter() {
	source <your_venv>/bin/activate
}

# Called when you exit the directory
autosrc_exit() {
	deactivate
}

Parent/children directories

If no .autosrc file is found in the current directory, autosrc will try to find/use one in the parent directory, then grandparent directory, etc.

If you enter a child directory that has a different .autosrc, then autosrc_exit() for the current directory and autosrc_enter() in the child directory will be called. If there exists no .autosrc in the child directory, nothing will happen.

This will allow you to stay in the same environment even if you visit child directories, but enter new child environments if you need.

License

Do whatever you want with it :)

autosrc's People

Contributors

seanyeh avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.