aboutsummaryrefslogtreecommitdiff
path: root/bench/copyfile.mjs
blob: 9db9faefeb07c050c1ea3e206844382a3ce27930 (plain) (blame)
1
2
3
import { copyFileSync } from "node:fs";
const arg = process.argv.slice(2);
copyFileSync(arg[0], arg[1]);