is-wordpress/README.md

40 lines
479 B
Markdown
Raw Permalink Normal View History

2019-12-01 11:50:59 +01:00
# Run 🏃‍♂️
2019-12-01 10:45:42 +01:00
``` bash
2019-12-14 09:08:33 +01:00
is-wordpress [domain]
2019-12-01 10:45:42 +01:00
```
2019-12-01 11:50:59 +01:00
# Example 👨‍🎓
2019-12-01 10:45:42 +01:00
``` bash
2019-12-14 09:08:33 +01:00
is-wordpress blog.us.playstation.com
2019-12-01 10:45:42 +01:00
```
2019-12-01 11:50:59 +01:00
⬇️
2019-12-01 10:50:21 +01:00
``` bash
true
```
---
``` bash
2019-12-14 09:08:33 +01:00
is-wordpress google.com
2019-12-01 10:50:21 +01:00
```
2019-12-01 11:50:59 +01:00
⬇️
2019-12-01 10:50:21 +01:00
``` bash
false
```
2019-12-14 09:10:21 +01:00
# Install ⚙️
## Requirements 👀
- bash 4.0 or higher
- curl
Then you do this.
``` bash
curl -o is-wordpress https://raw.githubusercontent.com/tanrax/is-wordpress/master/is-wordpress
chmod +x is-wordpress
sudo mv is-wordpress /usr/local/bin
```