File: mm

package info (click to toggle)
lam 7.1.4-8
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 56,404 kB
  • sloc: ansic: 156,541; sh: 9,991; cpp: 7,699; makefile: 5,621; perl: 488; fortran: 260; asm: 83
file content (17 lines) | stat: -rwxr-xr-x 480 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/bash

if [ "$1" == "--help" ] ; then
    echo \`$PNAME\' 
    echo
    $MPATH/$PNAME $1 2>&1 #| \
#    awk '/where options include/ {next} {print}' |\
#    awk '/ATLAS usage:/ {i=1;next} {if (i) {$0="Usage: " $0;i=0};print}'
else
    echo $PNAME $VERSION
    echo
#    echo Copyright \(C\) 2002 R. Clint Whaley et. al.
#    awk '/^Copyright/ {i=1;next} {if (i) print}' /usr/share/doc/atlas2-base/copyright 
#    echo
#    echo Written by R. Clint Whaley, et. al.
fi
exit 0