Ask HN: Have you integrated LLMs into any of your bash scripts or aliases? 1 points by detectivestory 7mo ago ↗ HN
[–] verdverm 7mo 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 7mo 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
[ 3.0 ms ] story [ 15.7 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'