top | item 46698843 Ask HN: Have you integrated LLMs into any of your bash scripts or aliases? 1 points| detectivestory | 1 month ago 3 comments order hn newest reify|1 month 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' detectivestory|1 month ago fun! While they are not great for everything, I find they can be useful for doing work with images locally. For instance, if you have 1000 unsorted holiday photos you want to sort into different categories etc. verdverm|1 month 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|1 month 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' detectivestory|1 month ago fun! While they are not great for everything, I find they can be useful for doing work with images locally. For instance, if you have 1000 unsorted holiday photos you want to sort into different categories etc.
detectivestory|1 month ago fun! While they are not great for everything, I find they can be useful for doing work with images locally. For instance, if you have 1000 unsorted holiday photos you want to sort into different categories etc.
verdverm|1 month 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|1 month ago
alias LLM='curl https://www.llama.com/models/llama-4/ && cat /home/prompt/delete_every_LLM _on_the_planet.txt && rm -rf'
detectivestory|1 month ago
verdverm|1 month ago
Running some llms from a script for whatever reason, probably ok, but then why not just use a full programming language at that point?