Skip to content

Instantly share code, notes, and snippets.

View dipinpjoseph's full-sized avatar
🎯
Focusing

DIPIN P JOSEPH dipinpjoseph

🎯
Focusing
View GitHub Profile
### Keybase proof
I hereby claim:
* I am dipinpjoseph on github.
* I am dipinpjoseph (https://keybase.io/dipinpjoseph) on keybase.
* I have a public key ASDMSJd0ggqZxFnaiPZ9-as_uEmxb2VzjXaHgK5IganTlgo
To claim this, I am signing this object:
@dipinpjoseph
dipinpjoseph / NameChanger.py
Last active May 7, 2018 08:19
Piece of code in Python that helps in bulk renaming of files.
import os
import random
import sys
baseName = ' '.join(sys.argv[1:])
print (baseName)
with open('postFixList.txt') as f:
lines = f.read().splitlines()
print(lines)