Score:0

How do I configure Ubuntu to automatically prepend every command with a certain command?

in flag

How can I configure Ubuntu Server so that every time I execute any terminal command, it prepends a specific command I name to that command?

So that:

$ cmd2

is actually received by the system as:

$ cmd1 cmd2

and for any

$ cmd-N

it will be received as

$ cmd1 cmd-N

I want to do this so I can automatically force every command to run under a time limit as described in this post: How could I set a universal time limit on any command line operation?. I don’t want to manually prepend every command with the command; I want it to become an automatic feature of the entire environment.

ar flag
"Every command" is a bit vague. The commands you type in the terminal are of various types. Some are built in, some are binary executables, some are scripts of different types, etc. What may work for one kind of command may not work for another.
vanadium avatar
cn flag
This smells like an XY problem. You want to achieve X, but you ask about problem Y which *you* think will solve problem X. Indicate in your question what you actually want to achieve, and good approaches will pop up, different perhaps than what you think will be the approach.
john-jones avatar
cn flag
https://superuser.com/questions/117227/a-command-before-every-bash-command
Score:0
cn flag

You don't give much info on what you want to achieve, but I think that the alias builtin is what you want.

alias cmd2='cmd1 cmd2' does literally what you asked, i.e. alias less='sudo less' will make all subsequent less calls to be translated to sudo less.

To make the alias persistent you have to add the command in your ~/.bashrc file.

You can check out https://opensource.com/article/19/7/bash-aliases for more info and examples.

in flag
Thanks but I updated the question to make it clearer - I meant **every** command automatically gets CMD-1 prepended to it. Maybe a line in the .bashrc?
Dion avatar
cn flag
I would create a short alias and prepend any command, just to be able to omit the "cmd1" if I need/want. If you absolutely want to prepend every line with "cmd1", you can try the link posted by @john-jones.
mangohost

Post an answer

Most people don’t grasp that asking a lot of questions unlocks learning and improves interpersonal bonding. In Alison’s studies, for example, though people could accurately recall how many questions had been asked in their conversations, they didn’t intuit the link between questions and liking. Across four studies, in which participants were engaged in conversations themselves or read transcripts of others’ conversations, people tended not to realize that question asking would influence—or had influenced—the level of amity between the conversationalists.