I\'m trying to cut the paper pragmatically by sending paper cut command to the printer (Epson TM U220 with USB port). I used the printer with Generic/Text Only Driver and Ep
For those printing with netcat (really easy way to print something without installing any driver), to cut the paper:
netcat
echo -e "\x1B@\x1DV1" | nc printer.ip 9100
Same string like in the c# version, but mapped to hex: \x1B = ESC and \x1D = GS.
\x1B = ESC
\x1D = GS