aboutsummaryrefslogtreecommitdiffstats
path: root/agents/demo/tools.sh
blob: 4b5849b4d7729b29d04f8895712744f9f6d96b1f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env bash
set -e

# @cmd Get the system info
get_sysinfo() {
    echo "OS: $(uname)"
    echo "Arch: $(arch)"
    echo "User: $USER"
}

# See more details at https://github.com/sigoden/argc
eval "$(argc --argc-eval "$0" "$@")"