Next Hold Space 5

Filtering printer motions

  • These days we would do it in Perl:

            #!/usr/bin/perl
            while (<>) {
                s/_\cH//g;
                print;
            }
  • Or, more idiomatically:

        #!/usr/bin/perl -p
        s/_\cH//g;

Next Next