Lines Matching full:echo
5 echo "Usage: `basename $0` phpfreechat_path checkmd5_output_filename"
6 echo "exempel: `basename $0` ~/pfc/misc/phpfreechat ~/pfc/misc/phpfreechat/checkmd5.php"
16 echo "$DST should not exist. Please delete this file."
22 echo "$PFC_PATH/version.txt doesn't exist."
26 echo "--> Creating $DST"
29 echo "<?php" > $TMP
30 echo '$files_ok = array();' >> $TMP
31 echo '$files_ko = array();' >> $TMP
37 echo 'if (md5(file_get_contents("'$f'")) == "'$sum'")' >> $TMP
38 echo ' $files_ok[] = "<span style=\"color:#3A3\">ok - '$f'</span>\n";' >> $TMP
39 echo 'else' >> $TMP
40 …echo ' $files_ko[] = "<span style=\"color:#F33\">corrupted - '$f' (please replace this file by a …
44 echo 'echo "<h2>Checking phpfreechat files validity</h2>";' >> $TMP
45 echo 'echo "<pre>\n";' >> $TMP
46 echo '$arr = array_merge($files_ko,$files_ok);' >> $TMP
47 echo 'foreach($arr as $file)' >> $TMP
48 echo ' echo $file;' >> $TMP
49 echo 'echo "</pre>\n";' >> $TMP
50 echo "?>" >> $TMP
55 echo "---> Done, $DST created"