https://github.com/jcbritobr/toyshell
This is a simple toy shell written in Rust language with porpose of learning system programmim, and in a specific theme, process management.
https://github.com/jcbritobr/toyshell
process rust shell system-programming
Last synced: about 2 months ago
JSON representation
This is a simple toy shell written in Rust language with porpose of learning system programmim, and in a specific theme, process management.
- Host: GitHub
- URL: https://github.com/jcbritobr/toyshell
- Owner: jcbritobr
- License: mit
- Created: 2022-01-29T16:03:08.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-01-30T14:04:05.000Z (over 3 years ago)
- Last Synced: 2024-04-17T19:26:18.431Z (about 1 year ago)
- Topics: process, rust, shell, system-programming
- Language: Rust
- Homepage:
- Size: 29.3 KB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Toy Shell Written in Rust
This is a simple toy shell written in Rust language with purpose of learning system programming and process management.* Compile
```
$ cargo build
```* Run
```
jcbritobr@DESKTOP-DT4KS9S:~/Workspace/rust/toyshell$ cargo run
Finished dev [unoptimized + debuginfo] target(s) in 0.02s
Running `target/debug/toyshell`
>> ls -lht
total 20K
drwxr-xr-x 2 jcbritobr jcbritobr 4.0K Jan 29 12:55 src
-rw-r--r-- 1 jcbritobr jcbritobr 224 Jan 29 12:55 README.md
drwxr-xr-x 3 jcbritobr jcbritobr 4.0K Jan 29 12:40 target
-rw-r--r-- 1 jcbritobr jcbritobr 177 Jan 29 12:38 Cargo.toml
-rw-r--r-- 1 jcbritobr jcbritobr 152 Jan 29 11:03 Cargo.lock
>>
```