Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions doc/examples/anim09/anim09.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
# The movie took ~6 hours to render on a 24-core MacPro 2013.

cat << EOF > pre.sh
#!/bin/bash
#!/usr/bin/env bash
# Pre-script: Runs once to produce files needed for all frames
gmt begin
gmt grdgradient @earth_relief_30s -A90 -Nt2.5 -Gearth_relief_30s+2.5_int.nc
Expand All @@ -34,7 +34,7 @@ WIDTH=36
HEIGHT=34
EOF
cat << EOF > main.sh
#!/bin/bash
#!/usr/bin/env bash
# Main frame script that makes a single frame given the location and twist from the data file
# and the other view parameters from the include file.
gmt begin
Expand Down
2 changes: 1 addition & 1 deletion doc/scripts/GMT_fatline.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# This script demonstrates the problem with the basic line rendering
# algorithm in ghostscript for fat lines.
# https://github.com/GenericMappingTools/gmt/issues/431
Expand Down
2 changes: 1 addition & 1 deletion doc/scripts/GMT_seamount_flux.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# Illustrate the two different volume-flux curves
ps=GMT_seamount_flux.ps
gmt set FONT_ANNOT_PRIMARY 14p
Expand Down
2 changes: 1 addition & 1 deletion doc/scripts/GMT_seamount_map.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# Illustrate the circular and elliptical bases of seamounts
ps=GMT_seamount_map.ps
gmt set MAP_VECTOR_SHAPE 0.5
Expand Down
4 changes: 2 additions & 2 deletions doc/scripts/GMT_seamount_types.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# Plot four different seamount types selectable in grdseamount
# 1. Conical seamount
gmt set MAP_VECTOR_SHAPE 0.5
Expand Down Expand Up @@ -141,4 +141,4 @@ gmt pstext -R -J -O -K -F+f16p,Times-Italic+j -N << EOF >> $ps
EOF
echo "@%1%d@%% (disc)" | gmt pstext -R -J -O -F+f18p+cTL -Dj0.1i >> $ps

rm -f tmp body line
rm -f tmp body line
2 changes: 1 addition & 1 deletion test/pslegend/autolegend.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
gmt begin autolegend ps
gmt plot -R0/7.2/3/7.2 -Jx1i -B @Table_5_11.txt -Sc0.15i -Glightgreen -Wfaint -lApples+H"LEGEND"+f16p+D
gmt plot @Table_5_11.txt -W1.5p,gray -l"My Lines"
Expand Down
2 changes: 1 addition & 1 deletion test/pssac/pssac_stdin.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!bin/bash
#!/usr/bin/env bash
#
# Description:

Expand Down