Ask HN: Have you integrated LLMs into any of your bash scripts or aliases? 1 points by detectivestory 5mo ago ↗ HN
[–] verdverm 5mo ago ↗ I would definitely not add LLMs to scripts used for automation, as that makes it unpredictableRunning some llms from a script for whatever reason, probably ok, but then why not just use a full programming language at that point?
[–] reify 5mo ago ↗ I just made one upalias LLM='curl https://www.llama.com/models/llama-4/ && cat /home/prompt/delete_every_LLM _on_the_planet.txt && rm -rf'
2 comments
[ 5.1 ms ] story [ 20.9 ms ] threadRunning some llms from a script for whatever reason, probably ok, but then why not just use a full programming language at that point?
alias LLM='curl https://www.llama.com/models/llama-4/ && cat /home/prompt/delete_every_LLM _on_the_planet.txt && rm -rf'