var filterFn = require('./solution_filter.js')
var dir = process.argv[2]
var filterStr = process.argv[3]
filterFn(dir, filterStr, function (err, list) {
if (err)
returnconsole.error('There was an error:', err)
list.forEach(function (file) {
console.log(file)
})
})