Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Documentation updated for -p argument #48

Merged
merged 1 commit into from
Oct 26, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -160,19 +160,19 @@ nirjas -h
- To extract comments from a single file

```sh
nirjas -p <path to file>
nirjas <path to file>
```

- To extract strings which assigned to variables from a source code file
- To extract strings which assigned to variables from a source code file (Not yet implemented)

```sh
nirjas -p <path to source code file>
nirjas <path to source code file>
```

- To extract comments from all the files in directory/sub-directory

```sh
nirjas -p <path to directory>
nirjas <path to directory>
```

- To extract only source code (excludes commented part) out of a file
Expand Down