Lines Matching refs:HOME

14 		grep "^test:.*" $HOME/master.passwd
26 grep "^test:.*" $HOME/master.passwd
37 grep "^test:.*:Test User,work,123,456:" $HOME/master.passwd
49 grep "^test:.*:Test User,home,123,456:" $HOME/master.passwd
61 grep "^test:.*:Test User,work,123:456,456:" $HOME/master.passwd
63 grep "^test:\*" $HOME/master.passwd
75 grep "^test:.*:Test User,work,123:456,456:" $HOME/master.passwd
77 grep "^test:\*" $HOME/master.passwd
88 grep "^bar:.*" $HOME/master.passwd
99 grep "^foo:.*" $HOME/master.passwd
129 awk -F\: '$4 == "foo" { print $1 }' ${HOME}/group
132 awk -F\: '$4 == "foo" { print $1 }' ${HOME}/group
142 grep "^bar:.*" ${HOME}/master.passwd
162 passhash=`awk -F ':' '/^foo:/ {print $2}' $HOME/master.passwd`
169 grep "^foo" ${HOME}/master.passwd
185 grep "^foo" ${HOME}/master.passwd
194 mkdir -p ${HOME}/home
196 test -d ${HOME}/home/foo || atf_fail "Directory not created"
198 test -d ${HOME}/home/bar || atf_fail "Directory not created"
224 atf_check -s exit:0 -o match:"^foo:\*" grep "^foo:" $HOME/master.passwd
233 atf_check -s exit:0 -o match:"^foo::" grep "^foo:" $HOME/master.passwd
242 passhash=`awk -F ':' '/^foo:/ {print $2}' $HOME/master.passwd`
253 passhash=`awk -F ':' '/^foo:/ {print $2}' $HOME/master.passwd`
262 mkdir -p ${HOME}/home
263 mkdir -p ${HOME}/skel
264 echo "entry" > ${HOME}/skel/.file
266 ! test -d ${HOME}/home/foo || atf_fail "Directory should not have been created"
268 test -d ${HOME}/home/foo || atf_fail "Directory should have been created"
269 test -f ${HOME}/home/foo/.file || atf_fail "Skell files not added"
270 echo "entry" > ${HOME}/skel/.file2
272 test -f ${HOME}/home/foo/.file2 || atf_fail "Skell files not added"
273 echo > ${HOME}/home/foo/.file2
275 atf_check -s exit:0 -o inline:"\n" cat ${HOME}/home/foo/.file2