Created
February 1, 2023 09:21
-
-
Save danielo515/244ef0a7557ec42218f9e194f8c85a98 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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