Skip to content

Commit 90e2967

Browse files
committed
xref wip
1 parent b63dfce commit 90e2967

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

calango/tools/farxrefs.py

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
#!/usr/bin/env python
2+
3+
"""
4+
update map of xrefs to different volumes
5+
"""
6+
7+
import subprocess
8+
import sys
9+
10+
def main():
11+
12+
print()
13+
14+
def capture_stderr(command):
15+
result = subprocess.run(command, shell=True, stderr=subprocess.PIPE, text=True)
16+
return result.stderr
17+
18+
if __name__ == '__main__':
19+
main()

0 commit comments

Comments
 (0)