11 lines
149 B
Plaintext
11 lines
149 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
# testutf8 will be soon removed completely, it's kept only not to break
|
||
|
# /etc/profile currently
|
||
|
if tty -s; then
|
||
|
exit 2
|
||
|
else
|
||
|
exit 0
|
||
|
fi
|
||
|
|