projects
/
vsorcdistro
/
.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Update and rename MantenerFIFO to MantenerFIFO.md
[vsorcdistro/.git]
/
scripts
/
cleaner.sh
1
#!/bin/bash
2
: '
3
Written by: Oscar J. Rodriguez
4
5
This is a filter used by precompiler.py
6
'
7
cat $1 | grep -E "[sh]+[0-9]{1,3}:[sh]+[0-9]{1,3}" > $1_clean
8
cat $1 | grep -vE "[sh]+[0-9]{1,3}:[sh]+[0-9]{1,3}" > $1_dirt
9