threebit.NET

Scripts

A collection of utility scripts that have been developed over time. They are all pretty simple but can end up being used heavily for system administration tasks. In the Unix way, they do one thing very well.

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

http://threebit.net/projects/scripts.shtml