#!/bin/sh case "${1##*.}" in pdf) pdftotext "$1" -;; zip) unzip -l "$1";; *) cat "$1";; esac