Advertisement
Sergio_Istea

search cadena

May 4th, 2023
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. #!/bin/python3
  2.  
  3. import sys
  4.  
  5. fichero = sys.argv[1]
  6.  
  7.  
  8. if fichero == "--help":
  9.  
  10. print(f"Modo de uso:\n\t{sys.argv[0]} /ruta/al/fichero cadena\n")
  11. exit()
  12.  
  13. cadena = sys.argv[2]
  14.  
  15. with open(fichero, 'r') as objeto_archivo:
  16.  
  17. lista = list(objeto_archivo)
  18.  
  19.  
  20.  
  21. indice = 0
  22.  
  23. list_size = len(lista)
  24.  
  25.  
  26. while indice < list_size:
  27.  
  28.  
  29. if cadena in lista[indice]:
  30.  
  31. print(f"El patron '{cadena}' se encuentra en el fichero")
  32. print(lista[indice])
  33.  
  34. indice += 1
  35.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement