ログ ファイルからいくつかの値を出力しようとしていますが、エコーはすべて 1 行で出力します。すべての結果を新しい行に出力したいだけです。
#!/bin/sh
echo "Content-type: text/html"
echo ""
echo "<html><head><title>Acessos do usuario"
echo "</title></head><body>"
echo "$(egrep 'kelsen.faria' /var/squid/logs/access_custom.log | awk '{ print "Data: " $1, "Usuario: " $9, "IP: " $4 }' | uniq)"
echo "</body></html>
ありがとうございました!