An open API service indexing awesome lists of open source software.

https://github.com/andrewrgarcia/googlebash

Calling a google search from your terminal / command line
https://github.com/andrewrgarcia/googlebash

bash bash-script terminal

Last synced: 2 months ago
JSON representation

Calling a google search from your terminal / command line

Awesome Lists containing this project

README

          

# googlebash

Calling a google search from your terminal / command line

## Usage (Setup below):

```ruby
# On Terminal:
google here comes the rain again
```
![](output.png)

That’s already very clean and clear! Here's a **lightly polished version** with consistent formatting and a minor tweak for readability:

## ✅ Make it Runnable from Anywhere

1. **Clone the repository to your home directory:**

```bash
cd ~
git clone https://github.com/andrewrgarcia/googlebash.git
```

2. **Make the script executable:**

```bash
chmod +x ~/googlebash/googleh.sh
```

3. **Add an alias to your `.bashrc`:**

```bash
echo 'alias google="$HOME/googlebash/googleh.sh"' >> ~/.bashrc
source ~/.bashrc
```