sshy 0.1.2

TUI application to make SSH configuration easier
1
2
3
4
5
6
7
pub fn del_last_word(str: String) -> String {
    let last_whitespace_idx = str.rfind(' ');
    match last_whitespace_idx {
        None => String::new(),
        Some(idx) => str[..idx].to_string(),
    }
}