mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 22:47:14 +08:00
12 lines
205 B
Bash
Executable File
12 lines
205 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# user-exists - Test for the existence of a user
|
|
#
|
|
#2010.03.09
|
|
|
|
|
|
# $1: path to system to be larchified ("/" if running system)
|
|
# $2: username to test for
|
|
|
|
grep "^$2:" $1/etc/passwd &>/dev/null
|