#!/bin/sh
#
# Wrapper to support file hacking on read-only file systems more easily
#
# Rick van der Zwet <info@rickvanderzwet.nl>


mount -uwo noatime || exit
vim $*
mount -uro noatime /
