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!

  • jbrains@sh.itjust.works
    link
    fedilink
    arrow-up
    3
    ·
    3 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.

  • thingsiplay@beehaw.org
    link
    fedilink
    arrow-up
    4
    ·
    4 hours ago

    https://www.gnu.org/software/bash/manual/bash.html#Miscellaneous-Commands

    Add to your .bashrc following lines:

    bind '"\C- ":shell-expand-line'
    bind '"\C-x":edit-and-execute-command'
    
    • Control+Space: Now you can expand variables, aliases, !492 history commands, the tilde without executing the line. Now you can make changes to the command.
    • Control+x: Opens the current command in an external editor (such as Vi, or whatever is setup for VISUAL or EDITOR variable). Now you can edit the command and if you save the temporary file and exit editor, the modified command will be executed. If you do not save, the unmodified command before launching the editor will be executed.
  • eldavi@lemmy.ml
    link
    fedilink
    English
    arrow-up
    4
    ·
    edit-2
    5 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.

  • imogen_underscore [it/its, she/her]@hexbear.net
    link
    fedilink
    English
    arrow-up
    3
    ·
    edit-2
    5 hours ago

    not sure if it’s what you’re looking for but on my Konsole (I think it’s actually just a bash feature), Ctrl+R lets you search through your command history and easily pull up past commands. it’s called reverse-i-search if you wanna check it out.

    • corvus@lemmy.mlOP
      link
      fedilink
      arrow-up
      2
      ·
      4 hours ago

      I was just told, but for the quick test I did I doesn’t seem to let me modified the command before executing it.

      • imogen_underscore [it/its, she/her]@hexbear.net
        link
        fedilink
        English
        arrow-up
        2
        ·
        edit-2
        4 hours ago

        yeah I think you’re supposed to be able to but it seems borked for me too. my terminal kinda freaks out when I try to move the cursor to the right to edit the command.

        edit the borking was for sure because i had a broken custom $PS1. i reset it to something normal and i’m able to edit the commands pulled up with Ctrl + R just fine now by hitting the right arrow key.

  • schnurrito@discuss.tchncs.de
    link
    fedilink
    arrow-up
    2
    arrow-down
    1
    ·
    5 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.