7267239313
and also make them more cross-shell test style
10 lines
230 B
Bash
Executable File
10 lines
230 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Assuming that urchin was invoked with `-s bash`, this script should be being run with bash.
|
|
|
|
this_shell=$(ps -o comm= -p $$ && :)
|
|
|
|
echo "Running shell: $this_shell"
|
|
|
|
[ "$(basename "$this_shell")" = '.special-shell' ]
|