Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > 7ec468a1a88b2e7695fe8ff28c5f32de > files > 66

bash-doc-4.2-49.1.mga4.x86_64.rpm

# To: chet@ins.CWRU.Edu
# Subject: Bash functions
# From: Sandeep Mehta <sxm@philabs.Philips.Com>

# print MH folders, useful only because folders(1) doesn't print
# mod date/times

mhfold()
{
	list=`folders | awk '{if (1 < NR) print $1}'`
	/bin/ls -lag ~/Mail > /tmp/fold$$
	for i in $list; do
		grep $i /tmp/fold$$
	done
	/bin/rm -f /tmp/fold$$
}