forked from Dark-Horse-Linux/pyrois
12 lines
111 B
Bash
12 lines
111 B
Bash
|
#!/bin/bash
|
||
|
set -u
|
||
|
|
||
|
export LC_ALL=C
|
||
|
|
||
|
app="sh"
|
||
|
expected_target="bash"
|
||
|
|
||
|
sym_check $app $expected_target
|
||
|
|
||
|
exit $?
|