This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Required parameters: | |
# @raycast.schemaVersion 1 | |
# @raycast.title Der Die Das | |
# @raycast.mode fullOutput | |
# Optional parameters: | |
# @raycast.icon 📚 | |
# @raycast.packageName Duden Artikel Suche |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# Fail on any error | |
set -e | |
# Make sure we have three arguments | |
if [ $# -ne 3 ]; then | |
echo "Usage: $0 <SERVER_ID> <ACCESS_TOKEN> <BACKEND_URL>" | |
exit 1 | |
fi |