scripts/tools/target-platform.rs (4 lines of code) (raw):
#!/usr/bin/env -S cargo +nightly -Zscript
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0 OR ISC
fn main() {
println!("{} {}", std::env::consts::OS, std::env::consts::ARCH);
}