mirror of
https://github.com/falcosecurity/falco.git
synced 2025-11-03 10:39:21 +00:00
20 lines
407 B
Bash
Executable File
20 lines
407 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
gccversion=$(gcc --version | head -n1)
|
|
cppversion=$(g++ -dM -E -x c++ /dev/null | grep -F __cplusplus | cut -d' ' -f3)
|
|
cmakeversion=$(cmake --version | head -n1)
|
|
dockerversion=$(docker --version)
|
|
|
|
cat <<EOF
|
|
Hello, this is the Falco builder.
|
|
|
|
How to use.
|
|
* ...
|
|
* ...
|
|
|
|
Environment.
|
|
* ${gccversion}
|
|
* cplusplus ${cppversion}
|
|
* ${cmakeversion}
|
|
* ${dockerversion}
|
|
EOF |