6 lines
70 B
Bash
6 lines
70 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
if [ $(pwck -rq | wc -l ) -ne 0 ];then
|
||
|
exit 1
|
||
|
fi
|