this post was submitted on 06 Apr 2025
18 points (100.0% liked)

Linux Questions

1602 readers
18 users here now

Linux questions Rules (in addition of the Lemmy.zip rules)

Tips for giving and receiving help

Any rule violations will result in disciplinary actions

founded 2 years ago
MODERATORS
 

i'm trying to basically make a shortcut for krabby (see link) so i dont have to type <krabby name (pokemon name)> to see a specified pokemon. basically how can i make a script that passes the and to the output of what i type next?

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 3 points 2 weeks ago* (last edited 2 weeks ago) (1 children)

They'd have to make an alias for every Pokemon. What they need is a simple program that reads input and executes the krabby command with that input as a parameter, then make it loop until it gets an exit command (or just Ctrl+C).

[–] [email protected] 2 points 2 weeks ago* (last edited 2 weeks ago) (1 children)

No, I don't think they'd have to make an alias for every Pokemon. The person you're responding to is correct.

Assuming that the original poster wants to continue to specify which Pokemon they want to see, they'll at least have to type that in, right?

If we're comfortable with that as a requirement, then an alias setting "k" to equal "krabby name" will work when you enter any Pokemon name after "k".

[–] [email protected] 1 points 2 weeks ago

I suppose that's true, though with their vague requirements, I was imagining something more like a REPL, so they could enter as many Pokemon as they wanted in a row, without needing an alias every time.