Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法用 ant 检测 FreeBSD。我用os.name它显示它为Linux。我想区分 FreeBSD 和 Linux。
os.name
使用uname -a会很好......你可以这样做......
uname -a
unname -a | grep FreeBSD
如果您的 JDK 是在仿真下运行的 Linux 版本,而不是 FreeBSD 原生版本,则可以解释操作系统被报告为 Linux。