mirror of
https://github.com/sharkdp/bat
synced 2026-07-05 14:13:17 +00:00
77ea750e66
CI reported FileNotFoundError for Tcl/{tclsh,expect,wish}_shebang in
tests/syntax-tests/source/Tcl/. The highlighted files existed but the
source files had been omitted, so create_highlighted_versions.py had
nothing to read from.
Source files match the shebang regression test inputs at
tests/examples/regression_tests/issue_3647_*.
8 lines
146 B
Plaintext
Vendored
8 lines
146 B
Plaintext
Vendored
#!/usr/bin/expect -f
|
|
# Expect script detected via expect shebang
|
|
set timeout 30
|
|
spawn ssh user@host
|
|
expect "password:"
|
|
send "secret\r"
|
|
expect eof
|