Compare commits
3 Commits
0b9c95e4b7
...
7d5f7adb9b
Author | SHA1 | Date |
---|---|---|
|
7d5f7adb9b | 2 months ago |
|
e2672b9d91 | 2 months ago |
|
c090887b80 | 2 months ago |
@ -0,0 +1,10 @@
|
||||
#!/usr/bin/gawk -f
|
||||
|
||||
# Execute for every lines
|
||||
{
|
||||
umlkey = "//u ";
|
||||
pos = index($0, umlkey);
|
||||
if (pos) {
|
||||
print substr($0, pos + length(umlkey))
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue