a4a5f70e1ebeee2ee5e14d39f3b661383833f190
[platform/upstream/bash.git] / examples / functions / mhfold
1 # To: chet@ins.CWRU.Edu
2 # Subject: Bash functions
3 # From: Sandeep Mehta <sxm@philabs.Philips.Com>
4
5 # print MH folders, useful only because folders(1) doesn't print
6 # mod date/times
7
8 mhfold()
9 {
10         list=`folders | tail +2 | awk '{print $1}'`
11         /bin/ls -lag ~/Mail > /tmp/fold$$
12         for i in $list; do
13                 grep $i /tmp/fold$$
14         done
15         /bin/rm -f /tmp/fold$$
16 }