summaryrefslogtreecommitdiff
path: root/etc/functions
diff options
context:
space:
mode:
authorDaniel Friesel <derf@derf.homelinux.org>2008-08-21 18:14:22 +0200
committerDaniel Friesel <derf@derf.homelinux.org>2008-08-21 18:14:22 +0200
commitc9e9b2b66cb3355488187c54519c67ec5545c1a0 (patch)
tree0c25d5f43067188394e1c6f0627f2df3068e6fa9 /etc/functions
parent4899645ca2ab9e2b91f38d9d15a78456cb0919b0 (diff)
replaced 'l' function by lesspipe
Diffstat (limited to 'etc/functions')
-rw-r--r--etc/functions/l10
1 files changed, 0 insertions, 10 deletions
diff --git a/etc/functions/l b/etc/functions/l
deleted file mode 100644
index c95a299..0000000
--- a/etc/functions/l
+++ /dev/null
@@ -1,10 +0,0 @@
-# self-explaining, I think
-if [[ -f "$1" ]]; then
- case "$1" in
- *.bz2) bzless "$1" ;;
- *.gz) zless "$1" ;;
- *) less "$1" ;;
- esac
-else
- echo "No such file, dude."
-fi