Skip to content

Instantly share code, notes, and snippets.

@fronterior
Last active February 25, 2022 22:38
Show Gist options
  • Save fronterior/42836385445ac7335a619bd4b3f4f090 to your computer and use it in GitHub Desktop.
Save fronterior/42836385445ac7335a619bd4b3f4f090 to your computer and use it in GitHub Desktop.
const {execSync} = require('child_process');
const COMMAND = 'DIR';
const cp949Decoder = new TextDecoder('windows-949');
const bytes = new Uint8Array(execSync(COMMAND));
console.log(cp949Decoder.decode(bytes));
// https://developer.mozilla.org/en-US/docs/Web/API/TextDecoder
// https://developer.mozilla.org/en-US/docs/Web/API/Encoding_API/Encodings
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment