Remove unnecessary alias for the shell-command subcommand in watchmedo.

Signed-off-by: Gora Khargosh <gora.khargosh@gmail.com>
1 file changed
tree: 7de8f5a13b6b92c529625096ab73809cee52a14d
  1. doc/
  2. watchdog/
  3. .gitignore
  4. AUTHORS
  5. bootstrap.py
  6. buildout.cfg
  7. LICENSE
  8. MANIFEST.in
  9. README.md
  10. setup.py
  11. watchmedo
  12. watchmedo.bat
README.md

Watchdog

Python API to monitor file system events.

Example Usage:

Introduction:

Watchdog lets your Python programs monitor filesystem events as portably as possible using:

  • inotify on Linux
  • FSEvents on Mac OS X
  • kqueue on BSD/OS X
  • ReadDirectoryChangesW on Windows
  • polling the directory for snapshots periodically and comparing them as a fallback mechanism (slowest)

Dependencies:

  1. pywin32 (only on Windows)
  2. pyinotify (only on Linux)
  3. XCode or gcc (only on Mac OS X)
  4. PyYAML
  5. argh
  6. select26 (for Python2.5 on BSD/Mac OS X)

Licensing:

Watchdog is licensed under the terms of the MIT License

Copyright (C) 2010 Gora Khargosh <gora.khargosh@gmail.com> and the Watchdog authors.

Project source code on Github