#!/bin/sh
# Filename:      firevim
# Purpose:       small wrapper to open any file from firefox with vim
# Authors:       grml-team (grml.org), (c) Michael Prokop <mika@grml.org>
# Bug-Reports:   see http://grml.org/bugs/
# License:       This file is licensed under the GPL v2.
################################################################################

xterm -e "vim $*"

## END OF FILE #################################################################
