Skip to content

Instantly share code, notes, and snippets.

@danielo515
Created February 1, 2023 09:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save danielo515/244ef0a7557ec42218f9e194f8c85a98 to your computer and use it in GitHub Desktop.
Save danielo515/244ef0a7557ec42218f9e194f8c85a98 to your computer and use it in GitHub Desktop.
// Name: os version
import "@johnlindquist/kit"
const version_info = (await $`sw_vers`).stdout
const version_lines = version_info.split("\n");
console.log(version_lines);
const version_number = version_lines[1].replace(/(?:.*?)(\d+)/,"$1");
copy(`macOS ${version_number}`);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment