acme
This commit is contained in:
commit
c2271ba672
43 changed files with 886 additions and 0 deletions
12
bin/c-
Executable file
12
bin/c-
Executable file
|
|
@ -0,0 +1,12 @@
|
|||
#!/usr/bin/env perl
|
||||
|
||||
# default: 1 symbol comment: #, %
|
||||
# need ARGV for comments like this: //
|
||||
|
||||
my ($symbol) = @ARGV;
|
||||
|
||||
my $offset = $symbol ? length $symbol : 1;
|
||||
|
||||
while (<STDIN>) {
|
||||
print substr $_, $offset;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue