UNPKG

@remote.it/cli

Version:

remote.it cross-platform command line

17 lines (14 loc) 425 B
import { GluegunToolbox } from 'gluegun' import { Environment } from '@remote.it/core' export default { name: 'network', alias: 'n', description: "Returns information about the current system's network interfaces.", async run(toolbox: GluegunToolbox) { const { print } = toolbox // Gluebox doesn't know fancy supports anything yet // @ts-ignore print.fancy(Environment.networkInterfaces) }, }