mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-13 20:12:26 +00:00
7 lines
151 B
JavaScript
Executable File
7 lines
151 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
|
|
// https://cirosantilli.com/linux-kernel-module-cheat#node-js
|
|
|
|
const fs = require('fs');
|
|
console.log(fs.readFileSync(0, 'utf8'));
|