#!/bin/sh # FIXME: Why won't this work? #cfgmaybe=`lspci | perl -n -e 's¡^.* VGA .*:\W(\w*).*¡/etc/X11/XF86Config-4-$1¡i && print if -f'` cfgbase="/etc/X11/XF86Config-4" cfgmaybe="$cfgbase-`lspci | perl -n -e 's¡^.* VGA .*:\W(\w*).*¡$1¡i && print'`" if [ -r "$cfgmaybe" ]; then echo "$cfgmaybe" else echo "$cfgbase" fi