14 lines
315 B
Bash
Executable File
14 lines
315 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Required parameters:
|
|
# @raycast.schemaVersion 1
|
|
# @raycast.title stat.ripe.net
|
|
# @raycast.argument1 { "type": "text", "placeholder": "ASN / Prefix / etc" }
|
|
# @raycast.mode silent
|
|
# @raycast.packageName Network Utilities
|
|
|
|
# Optional parameters:
|
|
# @raycast.icon 🕸
|
|
|
|
open "https://stat.ripe.net/${1}"
|