This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This gist contains useful bash scripts |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Fojat: | |
https://www.amazon.de/dp/B0725P9D3Q/ref=sr_1_4?crid=173HI3G5ZY877&keywords=kopfh%C3%B6rer+noise-cancelling&qid=1574277000&refinements=p_76%3A419122031%2Cp_72%3A419117031&rnid=669059031&rps=1&s=ce-de&sprefix=Headphones+noise+%2Celectronics%2C149&sr=1-4 | |
https://www.amazon.de/Neutrogena-Norwegische-Moisture-Bodylotion-Sensitive/dp/B01LTHLR68/ref=pd_rhf_se_s_sspa_dk_rhf_search_pt_sub_0_12?_encoding=UTF8&pd_rd_i=B01LTHLR68&pd_rd_r=a741c108-06a0-48be-b95d-e19fbc7681e8&pd_rd_w=3IlqC&pd_rd_wg=SekPi&pf_rd_p=b137599d-7c94-490a-baee-bfa71341f05f&pf_rd_r=KD24DS0QVZRAQHV76TGW&refRID=KD24DS0QVZRAQHV76TGW&spLa=ZW5jcnlwdGVkUXVhbGlmaWVyPUExMEFKVFhSVFhUT0wmZW5jcnlwdGVkSWQ9QTA2MzkxNTEySTlRNUpPMVRXUkU3JmVuY3J5cHRlZEFkSWQ9QTA1MjQwNTAyTTBITk9RU1hLMk04JndpZGdldE5hbWU9c3BfcmhmX3NlYXJjaCZhY3Rpb249Y2xpY2tSZWRpcmVjdCZkb05vdExvZ0NsaWNrPXRydWU&th=1&fbclid=IwAR19EElvObc70v1XAAwKxdwfOhoPpecFCMIhFspldWt5ZX-HIyVdPeNY7dg | |
https://www.amazon.de/gp/product/B000V3ME00/ref=ox_sc_act_title_2?smid=A3JWKAKR8XB7XF&psc=1 | |
https://www.amazon.de/Pr |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This gist contains all the easy hacks |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python2.7 | |
# python getLinesDifferenceBetweenTwoFiles.py --path1=line1.txt --path2=line2.txt | |
import sys | |
import os | |
import argparse | |
def read_lines_and_compare_files(first_file, second_file): | |
if not os.path.exists(first_file) or not os.path.exists(second_file): |
OlderNewer