💾 Archived View for gemini.ctrl-c.club › ~nttp › toys › gophersnake › dir2python.py captured on 2024-02-05 at 10:53:50.

View Raw

More Information

⬅️ Previous capture (2020-09-24)

-=-=-=-=-=-=-

#!/usr/bin/python3

from __future__ import print_function

import sys

if len(sys.argv) > 1:
	entries = []
	with open(sys.argv[1], "r") as f:
		for i in f:
			entries.append(
				(i[0],) + tuple(i[1:].rstrip().split("\t")))
	print(str(entries).replace("), ", "),\n\t"))
else:
	print("Usage:\n\tdir2python <filename>")