Crates.io | v_shellescape |
lib.rs | v_shellescape |
version | 0.3.5 |
source | src |
created_at | 2019-01-10 20:43:03.14438 |
updated_at | 2019-08-11 21:40:58.589673 |
description | Shell escaping code |
homepage | |
repository | https://github.com/botika/v_escape |
max_upload_size | |
id | 107819 |
size | 26,292 |
The simd optimized shell escape code
extern crate v_shellescape;
use v_shellescape::{unix, windows};
print!("{}", unix::ShellEscape::from("linker=gcc -L/foo -Wl,bar"));
print!("{}", windows::ShellEscape::from("linker=gcc -L/foo -Wl,bar"));