Compare commits
1 commit
Author | SHA1 | Date | |
---|---|---|---|
dab3905078 |
2 changed files with 19 additions and 2 deletions
7
Cargo.lock
generated
Normal file
7
Cargo.lock
generated
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
# This file is automatically @generated by Cargo.
|
||||||
|
# It is not intended for manual editing.
|
||||||
|
version = 3
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "jshell"
|
||||||
|
version = "0.1.0"
|
14
src/main.rs
14
src/main.rs
|
@ -1,3 +1,13 @@
|
||||||
fn main() {
|
use std::{io::stdin, process::Command};
|
||||||
println!("Hello, world!");
|
|
||||||
|
fn main(){
|
||||||
|
let mut input = String::new();
|
||||||
|
stdin().read_line(&mut input).unwrap();
|
||||||
|
|
||||||
|
// read_line leaves a trailing newline, which trim removes
|
||||||
|
let command = input.trim();
|
||||||
|
|
||||||
|
Command::new(command)
|
||||||
|
.spawn()
|
||||||
|
.unwrap();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue