|
| rvi |
is a Bash script that wraps invocations of vi with RCS. It's
default behaviour is to check-in any changes that were made previous
to the current execution, invoke an editor according to the EDITOR
environment variable, then check-in any changes made after execution.
maintainer: Kevin O'Donnell #!/bin/bash OUTFILE=/usr/local/bin/rvi lynx --source http://threebit.net/projects/scripts/rvi > $OUTFILE chmod +x $OUTFILE |
|---|
|
|