6 lines
109 B
Plaintext
6 lines
109 B
Plaintext
|
#!/bin/sh
|
||
|
ACCTFILE=/var/account/pacct
|
||
|
if [ ! -r $ACCTFILE ];then
|
||
|
touch $ACCTFILE && chmod 600 $ACCTFILE
|
||
|
fi
|