Skip to main content

tools like vscode file-watcher but for command only

Project description

something like File-Watcher for vscode

Usage

cqh_file_watcher -c ***.conf

conf example

use pattern

{"command_list":[
    {
        "pattern": "*.py",
        "command": "sudo supervisorctl restart redis"
    }
],
"directory": "/home/vagrant/code/code1"
}

no pattern

{"command_list":[

    {
        "command": "echo things changed"
    }
],
"directory": "/home/vagrant/code/code1"
}

directory for command

{"command_list":[
    {
        "pattern": "*.py",
        "command": "sudo supervisorctl restart redis"
        "directory":  "/home/vagrant"
    }
]
"directory": "/home/vagrant/code/code1"
}

add ignore pattern for one

{"command_list":[
    {
        "pattern": "*.py",
        "ignore_pattern": ["_build/.*"],
        "command": "sudo supervisorctl restart redis"
        "directory":  "/home/vagrant"
    }
]
"directory": "/home/vagrant/code/code1"
}

add ignore pattern for multi

{"command_list":[
    {
        "pattern": "*.py",
        "ignore_pattern": ["_build/.*" , "_download/.*", "^css/.*", "^_static/.*"],
        "command": "sudo supervisorctl restart redis"
        "directory":  "/home/vagrant"
    }
]
"directory": "/home/vagrant/code/code1"
}

use DIRECTORY env

{"command_list":[
    {
        "pattern": "*.py",
        "ignore_pattern": ["_build/.*" , "_download/.*", "^css/.*", "^_static/.*"],
        "command": "sudo supervisorctl restart redis"
        "directory":  "/home/vagrant"
    }
]
"directory": "${DIRECTORY}"
}

some problems

sre_constants.error: nothing to repeat at position 0

config

{"command_list":[
    {
        "pattern": "*\\.py",
        "ignore_pattern": ["_build/.*" , "_download/.*", "^css/.*", "^_static/.*"],
        "command": "${DIRECTORY}/venv/bin/invoke gpush"
    }
],
"directory": "${DIRECTORY}"
}

replace pattern: "*\\.py" with patter: ".*\\.py"

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cqh_file_watcher-0.0.41.tar.gz (6.9 kB view hashes)

Uploaded Source

Built Distribution

cqh_file_watcher-0.0.41-py3-none-any.whl (8.4 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page