zshrc: Move linenr to its own file
[grml-etc-core.git] / etc / zsh / zshrc
index 6409850..8726dbc 100644 (file)
@@ -3589,29 +3589,6 @@ fi
 #    fi
 #}
 
-#f2# Print a specific line of file(s).
-linenr () {
-    emulate -L zsh
-    if [ $# -lt 2 ] ; then
-       print "Usage: linenr <number>[,<number>] <file>" ; return 1
-    elif [ $# -eq 2 ] ; then
-         local number=$1
-         local file=$2
-         command ed -s $file <<< "${number}n"
-    else
-         local number=$1
-         shift
-         for file in "$@" ; do
-             if [ ! -d $file ] ; then
-                echo "${file}:"
-                command ed -s $file <<< "${number}n" 2> /dev/null
-             else
-                continue
-             fi
-         done | less
-    fi
-}
-
 #f2# Find history events by search pattern and list them by date.
 whatwhen()  {
     emulate -L zsh