
Get rid of underscores in filenames, use dashes instead. This is first part of cleanup in filenames. "qubes_rpc" still untouched - will be in separate commit.
8 行
117 B
Bash
可执行文件
8 行
117 B
Bash
可执行文件
#!/bin/sh
|
|
if /bin/ls -l /proc/self/fd/0 | grep -q /dev/hvc0 ; then
|
|
exec su - $2
|
|
exit
|
|
else
|
|
exec /bin/login "$@"
|
|
fi
|