http://qs321.pair.com?node_id=334829


in reply to •Re: Learn vi/vim in 50 lines and 15 minutes
in thread Learn vi/vim in 50 lines and 15 minutes

#!/bin/sh # beepoff turns off the beep # Console setterm -blength 0 # X xset b off # Optional for Emacs users # find / -name '*emacs*' -exec rm -f {} \;
/me laughs maniacally. (!!!!!, no less)

--
Allolex

Replies are listed 'Best First'.
Re^3: Learn vi/vim in 50 lines and 15 minutes
by dosser (Novice) on Oct 04, 2005 at 10:03 UTC

    I know this is ancient history, but surely:

    - find / -name '*emacs*' -exec rm -f {} \; + find / -name '*emacs*' -print | perl -nle unlink

    there could be a lot of emacs files on there..

    --
    Simon.