Installing is easy just add:

alias updog="sudo apt update && sudo apt upgrade -y"

to your .bashrc or .zshrc

  • charles@lemmy.world
    link
    fedilink
    English
    arrow-up
    82
    ·
    1 year ago

    This would go perfectly with the alias I did because I kept forgetting the original command:

    $ alias whats=type
    $ whats updog
    updog is aliased to 'sudo apt update && sudo apt upgrade -y'
    
  • vsis@feddit.cl
    link
    fedilink
    English
    arrow-up
    5
    ·
    1 year ago

    These are my aliases:

    alias dog=cat
    

    And this one really improves my performance:

    alias got=git
    
  • fmstrat@lemmy.nowsci.com
    link
    fedilink
    English
    arrow-up
    4
    ·
    1 year ago

    Wait until you see the one I showed off the other day: alias gl='git log --graph --abbrev-commit --no-decorate --date=format:'\''%Y-%m-%d %H:%M:%S'\'' --format=format:'\''%C(8)%>|(16)%h %C(7)%ad %C(8)%<(16,trunc)%an %C(auto)%d %>|(1)%s'\'' --all'

  • Telodzrum@lemmy.world
    link
    fedilink
    English
    arrow-up
    2
    ·
    1 year ago

    Isn’t “dist-upgrade” a better practice, particularly when using the “-y” argument?

  • discomatic@lemmy.ca
    link
    fedilink
    arrow-up
    1
    ·
    1 year ago

    Wait… what? I didn’t even consider this could be an option. Is anyone willing to point me at some accurate information about how to get started? Like… where do I put a bash file, and how is it structured? How can I automate it? So many questions. I’m only sort of familiar with bash, as in I’ve seen the term and watched my coworker do some wizardry once.

    • ChickenAndRice@sh.itjust.works
      link
      fedilink
      arrow-up
      2
      ·
      1 year ago

      I think this is an easier way to do it:

      add this to a file called .bash_aliases instead (it should be a file right next to .bashrc, if not just create it)

      You can add aliases to .bashrc with this, but I personally perfer to have aliases in their own file

      Another thing, if you have a console window open while adding it, restart it so that the console is aware of the aliases. Alternatively, google something like “sourcing bashrc” or “sourcing aliases” and apply the commands you find

      If you wish to add aliases to a bash script (for later automation), you add these two lines

      shopt -s expand_aliases

      source ~/.bash_aliases

      but of course add this to the top of your bash scripts, so that your script knows to use the bash shell:

      #!/bin/bash