Existe um bom substituto para !! (bang bang) em peixe?

4

Eu tenho experimentado recentemente a casca de peixe, mas uma coisa que eu continuo encontrando é a falta de peixe do !! command / builtin.

Eu não consigo encontrar uma boa alternativa ou substituição para peixes. Existe um?

    
por Seth 21.12.2014 / 03:44

1 resposta

4

Do git-hub - link

# Add this to your ~/.config/fish/config.fish
# Syntax:
# To just rerun your last command, simply type '!!'
# '!! sudo' will prepend sudo to your most recent command
# Running !! with anything other than sudo will append the argument to your most recent command
# To add another command to prepend list remove the # on line 10 and put the command in the quotes. Repeat as needed
function !!;
  set var (history | head -n 1)
  if test $argv
    if test $argv = "sudo"        #; or "any other command you want to prepend"
        eval $argv $var
    else
        eval $var $argv
    end
    else
        eval $var
  end
end
    
por Panther 21.12.2014 / 04:45

Tags