3 """Write content into file."""
10 parser
= argparse
.ArgumentParser(description
=__doc__
)
11 parser
.add_argument("filepath")
12 parser
.add_argument("content")
14 args
= parser
.parse_args()
16 with
open(args
.filepath
, "w") as f
:
20 if __name__
== "__main__":