this post was submitted on 03 Jul 2023
26 points (93.3% liked)

Linux

56427 readers
624 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 6 years ago
MODERATORS
26
submitted 2 years ago* (last edited 2 years ago) by MoriGM@feddit.de to c/linux@lemmy.ml
 

What are your most liked alias for long commands or just to give them better names.

Mine are:

alias load="source .load.sh"
alias eload="$EDITOR .load.sh"
alias gpush="git push"
alias gadd="git add --all"
alias gcommit="git commit -m "
alias gst="git status -s"
alias gpull="git pull"
(page 2) 10 comments
sorted by: hot top controversial new old
[–] gideonstar@feddit.de 1 points 2 years ago (2 children)
[–] coleman@lemmy.ml 1 points 2 years ago

I do this but with xx because I'm too scared

[–] wgs@lemmy.sdf.org -1 points 2 years ago

^D my dude.

[–] minorsecond@lemmy.ml 0 points 2 years ago (3 children)
alias ein='f() { sudo emerge -av $1 };f'
alias eup='sudo emerge -avuDN @world'
load more comments (3 replies)
[–] conc@lemmy.ml 0 points 2 years ago (1 children)
[–] MoriGM@feddit.de 0 points 2 years ago (1 children)
load more comments (1 replies)
[–] Nellum@feddit.de 0 points 2 years ago (3 children)

alias gladog="git log —all —decorate —oneline —graph" is my all time favourite. Sometimes I just want to have a quick way to see the git graph in the terminal.

[–] MoriGM@feddit.de 0 points 2 years ago (1 children)

Uhhh a terminal git user too

load more comments (1 replies)
load more comments (2 replies)
[–] Moonwalk@lemm.ee 0 points 2 years ago* (last edited 2 years ago)

I like to use the ones includes in oh-my-zsh. It's a big list, but the ones I use the most are:

gst --> git status

gcam --> git commit -am

gcp --> git cherry-pick

gsta --> git stash save

gstp --> git stash pop

gpsup --> git push --set-upstream origin $(git_current_branch)

grb --> git rebase

load more comments
view more: ‹ prev next ›