ChatGPT/ChatGPT2wiki.pl je jednoduchý skriptík v Perlu pro konverzi konverzace ChatGPT do wikikódu
#! /usr/bin/perl -w while (<>) { if (/^$/) {next;} if (/^User$/) {next;} if (/^ChatGPT$/) {print ':'; next;} print; }