diff options
author | Thomas White <taw@physics.org> | 2011-03-01 14:49:51 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2012-02-22 15:27:16 +0100 |
commit | 8e8cd379cb9cb82b70d8a0de70543ff09840edf5 (patch) | |
tree | eb0c4d50b82da30d9187f787a800b8c9eec2a716 | |
parent | 04448d2c0cf2584420211a32dfd879b1986ce568 (diff) |
scripts/check-near-bragg: Shorten over-long line
-rwxr-xr-x | scripts/check-near-bragg | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/check-near-bragg b/scripts/check-near-bragg index 027dcbdd..6c46fde6 100755 --- a/scripts/check-near-bragg +++ b/scripts/check-near-bragg @@ -37,7 +37,9 @@ while ( $line = <FH> ) { if ( $line =~ /^$/ ) { close(TMP); #$filename = "images-old/".basename($filename); - system("hdfsee ".$filename." --peak-overlay=list.tmp --binning=1 --int-boost=10"); + printf(STDERR "Viewing %s\n", $filename); + system("hdfsee ".$filename. + " --peak-overlay=list.tmp --binning=1 --int-boost=10"); if ( $? != 0 ) { exit; } unlink("list.tmp"); open(TMP, "> list.tmp"); |