Announcement

Collapse
No announcement yet.

Useful alias's

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Useful alias's

    Thought I'd start a thread for people to share useful alias's
    Here's some I use to save typing time

    Code:
    alias apin='sudo apt-get install'
    alias apup='sudo apt-get update'
    alias upgrade='sudo apt-get update && sudo apt-get upgrade'

    #2
    Ha, nice thread vsreeser

    Here is one I missed right away, it is only a couple letters but makes a difference.
    Code:
    #shorten up kdesudo
    alias kdesu="kdesudo"
    Here is a classic
    Code:
    #shorten cd ..
    alias ..="cd .."
    I like this function
    Code:
    #functions
    function today { echo -n "Today's date is: "; date +"%A, %B %-d, %Y"; }

    Comment


      #3
      Earlier at Kubuntu Forums - Thread: Useful bash aliases: https://www.kubuntuforums.net/showth...l-bash-aliases
      Have you tried ?

      - How to Ask a Question on the Internet and Get It Answered
      - How To Ask Questions The Smart Way

      Comment

      Working...
      X