this post was submitted on 03 Jul 2023
49 points (96.2% liked)

Linux

47325 readers
741 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 5 years ago
MODERATORS
 

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) 24 comments
sorted by: hot top controversial new old
[–] [email protected] 1 points 1 year ago (3 children)
load more comments (3 replies)
[–] [email protected] 1 points 1 year ago (3 children)
alias ein='f() { sudo emerge -av $1 };f'
alias eup='sudo emerge -avuDN @world'
load more comments (3 replies)
[–] Raphael 1 points 1 year ago* (last edited 1 year ago)

Updating Silverblue KDE from the terminal is way too convoluted. Sadly Fedora won't do anything as they only care about the GUI experience.

# Defined in /home/raphael/.config/fish/functions/update.fish @ line 1
function update --description 'Update and cleanup system'
    fedora sudo dnf update -y
    rpm-ostree update
    flatpak update -y
    flatpak uninstall --unused
    flatpak uninstall --delete-data
end
[–] [email protected] 1 points 1 year ago

TTIME (abbr - not alias)

abbr -a -- ttime date\ \'+It\ is\ \%-H\ \%M\ and\ \%S\ seconds\'\|espeak\ \>/dev/null\ 2\>/dev/null # imported from a universal variable, see `help abbr`
[–] [email protected] 1 points 1 year ago* (last edited 1 year 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

[–] [email protected] 1 points 1 year ago

Quite basic but saves me a couple of seconds each time. alias update="sudo apt update && sudo apt upgrade -y && sudo apt autoremove -y && sudo apt autoclean -y"

[–] [email protected] -1 points 1 year 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.

[–] [email protected] 0 points 1 year ago (1 children)

Uhhh a terminal git user too

[–] [email protected] 1 points 1 year ago (1 children)

Since my company won’t pay for Gitkraken I sadly am :/

[–] [email protected] 1 points 1 year ago

In my old company we used it and mostly it was just a ram eater for me XD

load more comments (2 replies)
load more comments
view more: ‹ prev next ›