pstrip

来自「linux下的E_MAIL客户端源码」· 代码 · 共 15 行

TXT
15
字号
#!/bin/shexec perl -x $0 ${1+"$@"}#!perl# take the nicely formatted and commented PostScript prolog code and make# it lean, mean, and unreadable to the average human.while(<>) {	next if (/^%/);	s/^(.*)%.*$/\1 /;	s/\t/ /g;	s/  / /eg;	s/\n$/ /;	print;}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?