通过 Evan Schwartzentruber
确定命令/程序的存在
#8 在 #program
3KB
一个极其小巧的库,其唯一目的是确定用户shell中是否存在命令/程序。
use cmd_exists::*; fn main() { assert!(cmd_exists("neofetch").is_ok()); }