mirror of
https://github.com/imapsync/imapsync.git
synced 2025-06-05 12:17:16 +02:00
6 lines
149 B
Bash
Executable file
6 lines
149 B
Bash
Executable file
#!/bin/sh
|
|
|
|
{ while IFS=';' read u1 p1 u2 p2; do
|
|
imapsync --user1 "$u1" --password1 "$p1" --user2 "$u2" --password2 "$p2" ...
|
|
done ; } < file.csv
|
|
|