Skip to content

Commit fbfd788

Browse files
authored
Merge branch 'master' into dev-0703
2 parents 82d2db8 + 1de0da8 commit fbfd788

File tree

4 files changed

+76
-1
lines changed

4 files changed

+76
-1
lines changed

.travis.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
language: rust
2+
rust:
3+
- nightly
4+
- beta
5+
- stable

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2018 Evil Rabbit
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
[![Build Status](https://travis-ci.org/ItinoseSan/ru-gnu-core-utils.svg?branch=master)](https://travis-ci.org/ItinoseSan/ru-gnu-core-utils)
2+
[![LICENCE](https://img.shields.io/dub/l/vibe-d.svg)](https://github.com/ItinoseSan/ru-gnu-core-utils/blob/master/LICENSE)
3+
4+
# ru-gnu-core-utils
5+
# Usage
6+
### 1.clone this repository and move to the directory.
7+
```
8+
git clone git@github.com:ItinoseSan/ru-gnu-core-utils.git
9+
```
10+
```
11+
cd ru-gnu-core-utils
12+
```
13+
### 2.Set up use crate
14+
```
15+
cargo build
16+
```
17+
### 3.Run src
18+
```
19+
cargo run
20+
```
21+
# Implemented command
22+
```
23+
ls
24+
pwd
25+
curl
26+
echo
27+
rmdir
28+
mkdir
29+
```
30+
# Demo
31+
```
32+
mkdir
33+
Error: Position(Alpha, [10])
34+
mkdir test
35+
ls
36+
./.git
37+
./Cargo.toml
38+
./.vscode
39+
./.gitignore
40+
./Cargo.lock
41+
./src
42+
./test
43+
./target
44+
pwd
45+
/home/username/my_projects/rust_app/linux-gnu-core-util
46+
```
47+
# Help
48+
I need to good implementation. Please tell me.

src/main.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,4 +137,5 @@ fn call_module_function(){
137137
functions::do_echo("Function called!");
138138
functions::curl_get_request("http://example.com");
139139
functions::get_ls();
140-
}
140+
}
141+

0 commit comments

Comments
 (0)