-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
28 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,29 @@ | ||
# Impressive Linux commands cheat sheet cli | ||
> Copy From https://github.com/chenjiandongx/pls | ||
> Copy From https://github.com/chenjiandongx/pls | ||
> And support offline mode | ||
## How to build at Windows | ||
```shell | ||
go env -w GOOS=linux | ||
go build -o pls | ||
``` | ||
|
||
## How to use | ||
1. cp pls to /usr/local/bin and chmod x to it | ||
```shell | ||
cp pls /usr/local/bin | ||
chmod 777 pls | ||
``` | ||
|
||
2. upgrade or offline | ||
```shell | ||
pls upgrade | ||
# or | ||
pls offline | ||
``` | ||
|
||
3. search and show | ||
```shell | ||
pls search 压缩 | ||
pls show zip | ||
``` |