There is a feature in termux (android) history command which when you use !371 to execute the command 371 in the command history it prints that command in the prompt instead of executing it, then you just press enter to execute it. I found it very useful because many times I want to execute a command that is in the history but with some modification, I’m using Konsole in my desktop PC and I couldn’t find an option to make such a thing. The only one I found is executing history -p !371, but that just print the command to stdout and not to the prompt itself.

EDIT: the answer is !371:p then up and the command 371 shows up in the prompt. Thanks Schizo!

  • Crestwave
    link
    1
    edit-2
    4 hours ago

    As the other commenters have mentioned, this is part of the shell configuration and outside the scope of the terminal emulator.

    You can configure this yourself by adding shopt -s histverify to your bashrc.

  • @[email protected]
    link
    fedilink
    English
    4
    edit-2
    16 hours ago

    i have a need for something like this too; but i’ve been making due with crtl+r and that’s been good enough to prevent me from taking action on it.

  • @[email protected]
    link
    fedilink
    214 hours ago

    Alternatively, use fc 371 to open the command in an editor and take your time figuring out how you might want to change it.

  • @[email protected]
    link
    fedilink
    116 hours ago

    Things like that aren’t a feature of the terminal emulator, but of the shell. Try to find out which shell you’re using on Android, maybe try using that one on desktop too.

  • @[email protected]
    link
    fedilink
    English
    116 hours ago

    Uh, are you sure your shell you’re using is bash and not zsh or something else?

    Bash is indeed just !12345.

    • @[email protected]OP
      link
      fedilink
      115 hours ago

      Yeah, it’s bash. But !12345 executes the command 12345, but I don’t want to execute it, just print it to the prompt.

      • @[email protected]
        link
        fedilink
        English
        5
        edit-2
        15 hours ago

        Does !12345:p do what you want?

        Edit: that also makes hitting the up arrow result in whatever command that was, so if you wanted to edit the line or whatever, you could !12345:p, up, then edit and execute.