Skip to content

Commit a9b23b7

Browse files
authored
Create oxlite.sh
1 parent b33e321 commit a9b23b7

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

oxlite/oxlite.sh

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#!/bin/bash
2+
3+
# This is a bash version of the python oxlite file
4+
# It uses curl to send requests
5+
6+
function oxlite(){
7+
read -r query
8+
search="https://www.google.com/search?q=$query"
9+
curl "https://api.hackertarget.com/pagelinks/?q=$search"
10+
11+
}
12+
oxlite

0 commit comments

Comments
 (0)