We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac17f5d commit f2a18c3Copy full SHA for f2a18c3
draft-3/draft-3/args.py
@@ -0,0 +1,7 @@
1
+#!/usr/bin/env python
2
+import sys
3
+import json
4
+import os
5
+args = [os.path.basename(a) for a in sys.argv[1:]]
6
+with open("cwl.output.json", "w") as f:
7
+ json.dump({"args": args}, f)
0 commit comments