importpw / os

Get information about the operating system in shell scripts

Home Page:https://import.pw/os

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

os

Get information about the operating system in shell scripts.

API

os_platform

Prints the operating system platform as a lowercased string. Examples:

  • darwin
  • linux
  • windows
#!/usr/bin/env import
import "os"

os_platform
# linux

os_arch

Prints the CPU architecture that the operating system is running on. Examples:

  • x86
  • x86_64
#!/usr/bin/env import
import "os"

os_arch
# x86_64

os_path_unshift

Adds an entry to the beginning of the $PATH environment variable.

#!/usr/bin/env import
import "os"

echo "\$PATH before: $PATH"
os_path_unshift "/foo/bin"
echo "\$PATH after:  $PATH"

os_path_push

Adds an entry to the end of the $PATH environment variable.

#!/usr/bin/env import
import "os"

echo "\$PATH before: $PATH"
os_path_push "/foo/bin"
echo "\$PATH after:  $PATH"

About

Get information about the operating system in shell scripts

https://import.pw/os

License:MIT License


Languages

Language:Shell 100.0%