Skip to content

Instantly share code, notes, and snippets.

@singhr6
singhr6 / FileSplitter.py
Created August 25, 2023 04:33 — forked from msharp/FileSplitter.py
python script to split a (large) file into multiple (smaller) files with specified number of lines
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import sys
import os
class FileSplitter:
def __init__(self):
self.parse_args(sys.argv)