发布于 6年前
                Deno 实现 cat 命令
async function cat(filenames: string[]): Promise<void> {
  for (let filename of filenames) {
    let file = await Deno.open(filename);
    await Deno.copy(Deno.stdout, file);
    file.close();
  }
}
cat(Deno.args.slice(1)); 
             
             
             
             
            