mirror of
https://gogs.blitter.com/RLabs/xs
synced 2024-08-14 10:26:42 +00:00
fc05a9a4a3
Signed-off-by: Russ Magee <rmagee@gmail.com>
9 lines
229 B
Bash
Executable file
9 lines
229 B
Bash
Executable file
#!/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
|
|
|