Code & Deploy
Code
Models
Repos
Sign in
@matheusbsbs
/
matheus-bagliano
matheus-bagliano
/
contrib
/
diff-highlight
/
diff-highlight.perl
Code
Commits
Pulls
CI/CD
81,841
master
bisect
jch
maint
master
next
seen
test
todo
perl
8 lines
211 Bytes
Copy permalink
Copy
Raw
1
package main;
2
3
# Some scripts may not realize that SIGPIPE is being ignored when launching the
4
# pager--for instance scripts written in Python.
5
$SIG{PIPE} = 'DEFAULT';
6
7
DiffHighlight::highlight_stdin();
8
exit 0;