You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
259 B
11 lines
259 B
2 years ago
|
// Exercise 10: Files, Args, Variables, Oh My
|
||
|
|
||
|
const fs = require('fs');
|
||
|
|
||
|
let file_to_open = process.argv[2];
|
||
|
let file_contents = fs.readFileSync(file_to_open);
|
||
|
|
||
|
console.log(`The file named ${file_to_open} contains:`);
|
||
|
console.log(file_contents.toString());
|
||
|
|