deno_cli 0.23.0

Provides the deno executable
Documentation
const { stdout, open, copy, args } = Deno;

async function main(): Promise<void> {
  for (let i = 1; i < args.length; i++) {
    const filename = args[i];
    const file = await open(filename);
    await copy(stdout, file);
  }
}

main();