A simple light string comparator
Well, I just wanted to create a simple Python script to help (at least for me) compare two strings. Sometimes, I need to compare large strings (like MD5 hashes), which are hard to read and difficult to handle, and I’m kind of lazy to use programs like vimdiff or similar tools. I just want to copy and paste the two strings into the terminal compare them and that’s it.
Just simple follow the next commands:
Clone the repo
git clone https://github.com/EJ-PJ/light_string_compare.gitOpen the dir.
cd ./light_string_compareJust execute python3.x whit the file and pass the argumnets
python3 ./compare_string.py string1 string2