Bachir Soussi Chiadmi cefd1c2ad0 updated sys and created publi | пре 6 година | |
---|---|---|
.. | ||
LICENSE | пре 6 година | |
README.md | пре 6 година | |
index.js | пре 6 година | |
package.json | пре 6 година |
Parse a passwd file into a list of users.
Install with npm:
$ npm install --save parse-passwd
var parse = require('parse-passwd');
Example
// assuming '/etc/passwd' contains:
// doowb:*:123:123:Brian Woodward:/Users/doowb:/bin/bash
console.log(parse(fs.readFileSync('/etc/passwd', 'utf8')));
//=> [
//=> {
//=> username: 'doowb',
//=> password: '*',
//=> uid: '123',
//=> gid: '123',
//=> gecos: 'Brian Woodward',
//=> homedir: '/Users/doowb',
//=> shell: '/bin/bash'
//=> }
//=> ]
Params
content
{String}: Content of a passwd file to parse.returns
{Array}: Array of user objects parsed from the content.Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.
Please read the contributing guide for avice on opening issues, pull requests, and coding standards.
(This document was generated by verb-generate-readme (a verb generator), please don't edit the readme directly. Any changes to the readme must be made in .verb.md.)
To generate the readme and API documentation with verb:
$ npm install -g verb verb-generate-readme && verb
Install dev dependencies:
$ npm install -d && npm test
Brian Woodward
Copyright © 2016, Brian Woodward. Released under the MIT license.
This file was generated by verb-generate-readme, v0.2.0, on October 19, 2016.