# deno_task_shell **Repository Path**: mirrors_mo/deno_task_shell ## Basic Information - **Project Name**: deno_task_shell - **Description**: Cross-platform shell for deno task. - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-11-14 - **Last Updated**: 2026-02-14 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # deno_task_shell [![](https://img.shields.io/crates/v/deno_task_shell.svg)](https://crates.io/crates/deno_task_shell) ```rs // parse let list = deno_task_shell::parser::parse(&text)?; // execute let env_vars = HashMap::from(&[ ("SOME_VAR".to_string(), "value".to_string()), ]); let cwd = std::env::current_dir()?; let exit_code = deno_task_shell::execute( list, env_vars, &cwd, Default::default(), // custom commands ).await; ```