Advertisement
Guest User

Untitled

a guest
Dec 4th, 2016
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. for item in $(cat myItems);do
  2. USER = cat $item | cut -d ":" -f1
  3. PASS = cat $item | cut -d ":" -f2
  4. done
  5.  
  6. for item in $(cat myItems);do
  7. USER = $(cat $item | cut -d ":" -f1)
  8. PASS = $(cat $item | cut -d ":" -f2)
  9. done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement