summaryrefslogtreecommitdiff
path: root/etc/functions/l
diff options
context:
space:
mode:
Diffstat (limited to 'etc/functions/l')
-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