summaryrefslogtreecommitdiff
path: root/quotehostinfo
blob: c014e283421a37dc14eb4a909e203e7a2f814f5a (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh
fil=/tmp/quotehostinfo$$
echo compiled: $(date) > $fil
make -s tellcc >> $fil

echo host: $(uname -m) $(uname -s) $(uname -r) >> $fil
gcc -v 2>&1 | tail -1 >> $fil

echo \"$(cat $fil | sed 's/.*/&\\\\n/')\" | sed 's/\\n /\\n/g'
rm $fil