forked from ovh/pci-test
9 lines
117 B
Python
9 lines
117 B
Python
import sys
|
|
|
|
|
|
def print_args():
|
|
return " ".join(sys.argv[1:])
|
|
|
|
|
|
if __name__ == "__main__":
|
|
print(print_args()) |