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
- Host: GitHub
- URL: https://github.com/andrewrgarcia/googlebash
- Owner: andrewrgarcia
- License: mit
- Created: 2022-09-10T05:42:13.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2025-07-21T18:13:36.000Z (12 months ago)
- Last Synced: 2025-07-21T20:22:55.185Z (12 months ago)
- Topics: bash, bash-script, terminal
- Language: Shell
- Homepage:
- Size: 805 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```

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
```