Skip to content

Commit

Permalink
add usage (#38)
Browse files Browse the repository at this point in the history
* add usage

* fix usage and adapt markdown lint  #26

Co-authored-by: Alan Smithee <[email protected]>
  • Loading branch information
hach1yon and hitenkoku authored Jul 24, 2021
1 parent 29cdae6 commit 6648675
Showing 1 changed file with 37 additions and 2 deletions.
39 changes: 37 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,39 @@
# RustyBlue
# RustyBlue

RustyBlue is a software ported from DeepBlueCLI in Rust language. We admire the DeepBlueCLI.

RustyBlueはDeepBlueCLIをRust言語で移植されたソフトです。私たちは、DeepBlueCLIを称賛しています。
RustyBlueはDeepBlueCLIをRust言語で移植されたソフトです。私たちは、DeepBlueCLIを称賛しています。

## Usage

`````````````````````
-f --filepath=[FILEPATH] 'analyze event file'
-d --dirpath=[DIRECTORYPATH] 'analyze event log files in directory'
-c --credits 'print credits infomation'
`````````````````````

## Usage Example

### Analysis one event log for specified path

コンパイルされたバイナリを使用する場合、下記のようなコマンドで実行することができます。

``````````
rusty_blue.exe --filepath=C:\Users\user\Downloads\security.evtx
``````````

### Analysis recusively all event logs in specified directory

コンパイルされたバイナリを使用する場合、下記のようなコマンドで実行することができます。

``````````
rusty_blue.exe --dirpath=C:\Users\user\Downloads
``````````

### Build from source code

以下コマンドでcloneしたソースコードからコンパイルすることができます。Rustのコンパイル環境をローカル環境に導入していることが条件です。

``````````
cargo build --release
``````````

0 comments on commit 6648675

Please sign in to comment.