#!/bin/sh echo memo_cmd memo_cmd() { file=plaquette.lyx test -z "$file" && return if ! test -r $file; then echo $file not readable return fi for format in latex dvi ps pdf html; do lyx -e $format plaquette.lyx done lynx -dump -nolist -width=60 plaquette.html > plaquette.txt }