import Files from '../files'; const Colored = (p) => { return {...p.children} } module.exports = { cat: { description: 'Show contents of a file', fn: require('./cat') }, ls: { description: 'Show files in current directory', fn: ()=>{ return
                {Object.keys(Files).join('   ')}
            
; } }, skills: { description: 'My skills data', fn: () => { return (
                Web dev (PHP & JS)
                
[#####] 100%
My main work field

C/C++/Rust native dev
[## ] 40%
I do this... sometimes

Linux skills
[#####] 100%
Do this all the time. I run linux on my laptop, pc and server

Being cishet
[ ] 0%
Never liked it
) } } }