File: %40p

package info (click to toggle)
auto-07p 0.9.1%2Bdfsg-7
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 16,200 kB
  • sloc: fortran: 22,644; f90: 19,340; python: 19,045; ansic: 11,116; sh: 1,079; makefile: 618; perl: 339
file content (22 lines) | stat: -rwxr-xr-x 438 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/sh
. compat.sh
if ( test $# -eq 1 ) then
	b1=b.$1
	s1=s.$1
	echo "Plotting b.$1 and s.$1 ..."
else
	b1=fort.7
	s1=fort.8
	echo "Plotting fort.7 and fort.8 ..."
fi
if test $COMPAT = compat; then
	cp $b1 fort.17
	cp $s1 fort.18
	b1=
	s1=
fi
if [ -x $AUTO_DIR/bin/xterm-tek ]; then
	$AUTO_DIR/bin/xterm-tek -bg black -fg white -t -e $AUTO_DIR/bin/plaut $b1 $s1 &
else
	xterm -bg black -fg white -t -e $AUTO_DIR/bin/plaut $b1 $s1 &
fi