Advertisement
Guest User

Untitled

a guest
Apr 1st, 2017
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.21 KB | None | 0 0
  1. #! /bin/bash  
  2.  
  3. while true
  4. do
  5. while read line  
  6. do  
  7.     username=$(echo $line | cut -f1 -d:)
  8.     password=$(echo $line | cut -f2 -d:)
  9.     python script.py drapeau.png 376 817 $username $password
  10. done < file.txt
  11. done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement