Browse Source

tcl-testbench[x].sh: Use bash within shebang

These scripts using non Posix shell extensions which are provided by bash and
require the bash as shell to be fully functional.
pre-master-46
Carsten Schoenert 4 years ago
committed by Holger Vogt
parent
commit
e373ca0e2f
  1. 2
      examples/tclspice/tcl-testbench1/tcl-testbench1.sh
  2. 2
      examples/tclspice/tcl-testbench3/tcl-testbench3.sh

2
examples/tclspice/tcl-testbench1/tcl-testbench1.sh

@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash
# -*- mode: tcl -*- \ # -*- mode: tcl -*- \
exec wish -f "$0" ${1+"$@"} exec wish -f "$0" ${1+"$@"}

2
examples/tclspice/tcl-testbench3/tcl-testbench3.sh

@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash
# -*- mode: tcl -*- \ # -*- mode: tcl -*- \
exec wish -f "$0" ${1+"$@"} exec wish -f "$0" ${1+"$@"}

Loading…
Cancel
Save