lib/Tools/expandshort
author wenzelm
Wed, 28 Nov 2001 00:37:08 +0100
changeset 12303 67ca723a02dd
parent 10555 2323ec838401
child 14981 e73f8140af78
permissions -rwxr-xr-x
tuned;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10555
2323ec838401 /usr/bin/env bash;
wenzelm
parents: 10511
diff changeset
     1
#!/usr/bin/env bash
2546
866957616069 expand shorthand goal commands;
wenzelm
parents:
diff changeset
     2
#
866957616069 expand shorthand goal commands;
wenzelm
parents:
diff changeset
     3
# $Id$
9788
wenzelm
parents: 7887
diff changeset
     4
# Author: Markus Wenzel, TU Muenchen
wenzelm
parents: 7887
diff changeset
     5
# License: GPL (GNU GENERAL PUBLIC LICENSE)
2546
866957616069 expand shorthand goal commands;
wenzelm
parents:
diff changeset
     6
#
866957616069 expand shorthand goal commands;
wenzelm
parents:
diff changeset
     7
# DESCRIPTION: expand shorthand goal commands
866957616069 expand shorthand goal commands;
wenzelm
parents:
diff changeset
     8
866957616069 expand shorthand goal commands;
wenzelm
parents:
diff changeset
     9
10511
wenzelm
parents: 9788
diff changeset
    10
PRG="$(basename "$0")"
2546
866957616069 expand shorthand goal commands;
wenzelm
parents:
diff changeset
    11
866957616069 expand shorthand goal commands;
wenzelm
parents:
diff changeset
    12
function usage()
866957616069 expand shorthand goal commands;
wenzelm
parents:
diff changeset
    13
{
866957616069 expand shorthand goal commands;
wenzelm
parents:
diff changeset
    14
  echo
4416
c32a5c724263 improved;
wenzelm
parents: 3007
diff changeset
    15
  echo "Usage: $PRG [FILES|DIRS...]"
2546
866957616069 expand shorthand goal commands;
wenzelm
parents:
diff changeset
    16
  echo
7498
1e5585fd3632 expandshort usage: forward_tac;
wenzelm
parents: 6082
diff changeset
    17
  echo "  Recursively find .ML files, expand shorthand goal commands.  Also"
1e5585fd3632 expandshort usage: forward_tac;
wenzelm
parents: 6082
diff changeset
    18
  echo "  contracts uses of resolve_tac, dresolve_tac, eresolve_tac,"
7887
eedfff88ee40 tuned usage;
wenzelm
parents: 7498
diff changeset
    19
  echo "  forward_tac, rewrite_goals_tac on 1-element lists; furthermore"
eedfff88ee40 tuned usage;
wenzelm
parents: 7498
diff changeset
    20
  echo "  expands tabs, which are forbidden in SML string constants."
2546
866957616069 expand shorthand goal commands;
wenzelm
parents:
diff changeset
    21
  echo
4416
c32a5c724263 improved;
wenzelm
parents: 3007
diff changeset
    22
  echo "  Renames old versions of files by appending \"~~\"."
2546
866957616069 expand shorthand goal commands;
wenzelm
parents:
diff changeset
    23
  echo
866957616069 expand shorthand goal commands;
wenzelm
parents:
diff changeset
    24
  exit 1
866957616069 expand shorthand goal commands;
wenzelm
parents:
diff changeset
    25
}
866957616069 expand shorthand goal commands;
wenzelm
parents:
diff changeset
    26
4416
c32a5c724263 improved;
wenzelm
parents: 3007
diff changeset
    27
c32a5c724263 improved;
wenzelm
parents: 3007
diff changeset
    28
## process command line
c32a5c724263 improved;
wenzelm
parents: 3007
diff changeset
    29
9788
wenzelm
parents: 7887
diff changeset
    30
[ "$#" -eq 0 -o "$1" = "-?" ] && usage
4416
c32a5c724263 improved;
wenzelm
parents: 3007
diff changeset
    31
9788
wenzelm
parents: 7887
diff changeset
    32
SPECS="$@"; shift "$#"
2546
866957616069 expand shorthand goal commands;
wenzelm
parents:
diff changeset
    33
866957616069 expand shorthand goal commands;
wenzelm
parents:
diff changeset
    34
866957616069 expand shorthand goal commands;
wenzelm
parents:
diff changeset
    35
## main
866957616069 expand shorthand goal commands;
wenzelm
parents:
diff changeset
    36
6082
590f9e3bf4d8 configure AUTO_BASH, AUTO_PERL;
wenzelm
parents: 4508
diff changeset
    37
#set by configure
590f9e3bf4d8 configure AUTO_BASH, AUTO_PERL;
wenzelm
parents: 4508
diff changeset
    38
AUTO_PERL=perl
590f9e3bf4d8 configure AUTO_BASH, AUTO_PERL;
wenzelm
parents: 4508
diff changeset
    39
9788
wenzelm
parents: 7887
diff changeset
    40
find $SPECS -name \*.ML -print | xargs "$AUTO_PERL" -w "$ISABELLE_HOME/lib/scripts/expandshort.pl"