File: geauswert.sh

package info (click to toggle)
eprover 2.6%2Bds-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 21,288 kB
  • sloc: ansic: 331,111; csh: 12,026; python: 10,178; awk: 5,825; makefile: 461; sh: 389
file content (11 lines) | stat: -rwxr-xr-x 235 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
#! /bin/sh

if [ "$1" ]; then
    for file in $* ; do
	printf "%-65s%s\n" $file "`eauswert.awk $file|cut -d\: -f2-`"
    done
else
    for file in proto* ; do
	printf "%-65s%s\n" $file "`eauswert.awk $file|cut -d\: -f2-`"
    done
 fi