We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f26722 commit 41ca29eCopy full SHA for 41ca29e
1 file changed
implement-shell-tools/cat/cat.js
@@ -0,0 +1,7 @@
1
+const fs = require("fs");
2
+
3
+const filename = process.argv[2];
4
5
+const content = fs.readFileSync(filename, "utf8");
6
7
+process.stdout.write(content);
0 commit comments