new shell script used for test programs.
This commit is contained in:
parent
4c9219b612
commit
2924090023
1 changed files with 20 additions and 0 deletions
20
bin/exp3to2.sh
Executable file
20
bin/exp3to2.sh
Executable file
|
|
@ -0,0 +1,20 @@
|
|||
#/bin/sh
|
||||
#
|
||||
# This sed script replaces 3 character exponents
|
||||
# starting with 0 with 2 characters
|
||||
# e-0xx -> e-xx
|
||||
# e0xx -> exx
|
||||
# E-0xx -> E-xx
|
||||
# E0xx -> Exx
|
||||
# where
|
||||
# x is a digit
|
||||
#
|
||||
# It takes one argument, the file to be operated on.
|
||||
# And, it writes to standard out. It may be used to do a
|
||||
# replacement in place.
|
||||
#
|
||||
cp $1 .exp.txt
|
||||
cat .exp.txt | sed 's/\([eE]-\)\(0\)\([0-9][0-9]\)/\1\3/g' | \
|
||||
sed 's/\([eE]\)\(0\)\([0-9][0-9]\)/\1\3/g' | \
|
||||
sed 's/\([eE]+\)\(0\)\([0-9][0-9]\)/\1\3/g'
|
||||
rm .exp.txt
|
||||
Loading…
Add table
Reference in a new issue