#!/usr/bin/env node

import convertBytesToHumanReadable from 'human-readable-bytes';



process.args.forEach( (val, index) => {
	if( index == process.args.length - 1 ){
		console.log( val );
	}
});