ibndias commited on
Commit
04986b6
·
1 Parent(s): 21a5953

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +19 -21
README.md CHANGED
@@ -28,24 +28,22 @@ print(outputs[0]["generated_text"])
28
  ```
29
 
30
  Output:
31
- ```
32
- <|system|> You are a helpful assistant.
33
- <|user|>
34
- Write me bash script to scan ip 192.3.1.4 with nmap only port that ends with 9 from 1-100.
35
- <|assistant|>
36
- Sure, here's a bash script that scans the specified IP address with nmap for open ports that end with 9 from 1 to 100:
37
- ```
38
- #!/bin/bash
39
- IP_ADDRESS="192.3.1.4"
40
- START_PORT=1
41
- END_PORT=100
42
- for ((i=$START_PORT; i<=$END_PORT; i++)); do
43
- PORT=$i
44
- if [[ $PORT % 10 == 9 ]]; then
45
- nmap -p $PORT $IP_ADDRESS
46
- fi
47
- done
48
- ```
49
- Save the script with a.sh extension (e.g., scan_ports.sh) and make it executable by running `chmod +x scan_ports.sh`. Then, run the script by executing `./scan_ports.sh`.
50
- ...
51
- ```
 
28
  ```
29
 
30
  Output:
31
+ ><|system|> You are a helpful assistant.
32
+ ><|user|>
33
+ >Write me bash script to scan ip 192.3.1.4 with nmap only port that ends with 9 from 1-100.
34
+ ><|assistant|>
35
+ >Sure, here's a bash script that scans the specified IP address with nmap for open ports that end with 9 from 1 to 100:
36
+ >```
37
+ >#!/bin/bash
38
+ >IP_ADDRESS="192.3.1.4"
39
+ >START_PORT=1
40
+ >END_PORT=100
41
+ >for ((i=$START_PORT; i<=$END_PORT; i++)); do
42
+ > PORT=$i
43
+ > if [[ $PORT % 10 == 9 ]]; then
44
+ > nmap -p $PORT $IP_ADDRESS
45
+ > fi
46
+ >done
47
+ >```
48
+ >Save the script with a.sh extension (e.g., scan_ports.sh) and make it executable by running `chmod +x scan_ports.sh`. Then, run the script by executing `./scan_ports.sh`.
49
+ >...