From e696e784742f2a9e87cf98b7b0b836ad09b314f6 Mon Sep 17 00:00:00 2001 From: HAHWUL Date: Sat, 13 Feb 2021 17:01:40 +0900 Subject: [PATCH] Update README.md --- README.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/README.md b/README.md index 67fbfa9..a445474 100644 --- a/README.md +++ b/README.md @@ -87,6 +87,30 @@ curl -i -k https://www.hahwul.com/?q=123 -H 'Auth: abcd' curl -i -k http://testphp.vulnweb.com/listproducts.php?cat=asdf&ff=1 -H 'Auth: abcd' curl -i -k https://xss-game.appspot.com/level1/frame -H 'Auth: abcd' ``` +### Find and replace +``` +$ cat raw.txt | gee -find keep-alive +$ cat raw.txt | gee -find keep-alive -replace close +``` +https://twitter.com/hahwul/status/1360495560843689989 + +### Specify the maximum length of the file and save it in multiple files. +``` +$ wc -l http.txt +2278 + +$ cat http.txt | gee -chunked 500 output +``` +https://twitter.com/hahwul/status/1360495565633540097 + +### Distribute each line sequentially to multiple files. +``` +$ wc -l http.txt +2278 + +$ cat http.txt | gee -distribute alice.txt bob.txt charlie.txt +``` +https://twitter.com/hahwul/status/1360495570922704897 ## 🌟 Contribute [Contribute](/CONTRIBUTING.md)