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
// We assume that the input file 'users.csv' is a three field | |
// comma separated list of users | |
// John Q. User, [email protected], password_ofjohn | |
// | |
// Password can be empty, but the csv still needs a field there | |
// | |
// John Q. User, [email protected], | |
// (note the trailing comma) | |
// | |
// The name field must have at least two tokens. If there are three or more |
NewerOlder