사용자 gsetting 우분투 18.4

사용자 gsetting 우분투 18.4

질문이 있습니다. 현재 Ubuntu 18 설치가 끝나면 실행할 스크립트가 있습니다.

그리고 실행할 때 gsettings를 추가하는 방법을 모르겠습니다... 시작 방법에 대한 예는 다음과 같습니다.

#!/bin/sh
#
######### is username and password entered? ########
if [ $# -ne 2 ]
then
echo "Username and password required."
echo "Example:"
echo "sh script-sessions users password"
exit
fi
USER = $ 1
PASSWORD = $ 2
######### is running as root? #########
me=$(whoami)
if [ "root" = $ yo ]
then
         threw out ""
else
         echo "This command must be run as administrator, run sudo su"
         exit
fi
######### Does the user exist in the system? ########

exists=$ (cat /etc/passwd | grep "$ USER:")
if [ -n "$ exists" ]; then
echo "User exists"
else
echo "The user does not exist, enter a system user."
exit
fi

관련 정보