UNPKG

e-lado

Version:

[![CircleCI](https://circleci.com/gh/sharetribe/sharetribe/tree/master.svg?style=svg)](https://circleci.com/gh/sharetribe/sharetribe/tree/master) [![Dependency Status](https://gemnasium.com/sharetribe/sharetribe.png)](https://gemnasium.com/sharetribe/shar

12 lines (10 loc) 307 B
var exec = require('child_process').exec; module.exports = function (iface, callback) { exec("cat /sys/class/net/" + iface + "/address", function (err, out) { if (err) { callback(err, null); return; } callback(null, out.trim().toLowerCase()); }); };