mirror of
https://gogs.blitter.com/RLabs/xs
synced 2024-08-14 10:26:42 +00:00
10 lines
229 B
Bash
10 lines
229 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
inFile="${1/.go/}"
|
||
|
visFile="${inFile}-vis.gv"
|
||
|
|
||
|
#grep -o "\.[a-zA-Z_]*\$[0-9]*" "$inFile"-vis.gv | sort | uniq
|
||
|
grep -o "#gv:.*" "$inFile.go" | cut -f2 -d: | \
|
||
|
while read -r expr; do sed -i ${expr} "${visFile}"; done
|
||
|
|