this post was submitted on 23 Jun 2025
194 points (99.0% liked)

Linux

55631 readers
1205 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
 

A while ago I made a tiny function in my ~/.zshrc to download a video from the link in my clipboard. I use this nearly every day to share videos with people without forcing them to watch it on whatever site I found it. What's a script/alias that you use a lot?

# Download clipboard to tmp with yt-dlp
tmpv() {
  cd /tmp/ && yt-dlp "$(wl-paste)"
}
(page 2) 50 comments
sorted by: hot top controversial new old
[–] hobbsc@lemmy.sdf.org 16 points 2 days ago* (last edited 2 days ago)

alias fucking='sudo' (my coworkers often used prettyplease instead)

[–] golden_zealot@lemmy.ml 14 points 2 days ago (2 children)

alias clip='xclip -selection clipboard'

When you pipe to this, for example ls | clip, it will stick the output of the command ran into the clipboard without needing to manually copy the output.

[–] timbuck2themoon@sh.itjust.works 4 points 2 days ago (1 children)

Pretty sure this only works on x distros? wl-copy and wl-paste are for Wayland FYI.

load more comments (1 replies)
[–] mmmm@sopuli.xyz 10 points 2 days ago* (last edited 2 days ago)

I use a KDE variant of this that uses klipper instead (whatever you pipe to this will be available in klipper):

` #!/bin/sh

function copy {
    if ! tty -s && stdin=$(</dev/stdin) && [[ "$stdin" ]]; then
        stdin=$stdin$(cat)
        qdbus6 org.kde.klipper /klipper setClipboardContents "$stdin"
        exit
    fi

    qdbus6 org.kde.klipper /klipper getClipboardContents
}

copy $@`
[–] DrunkAnRoot@sh.itjust.works 3 points 1 day ago (1 children)

i use

alias kimg='kitty +kitten icat' 

to display images in my terminal pretty simple but nice

[–] ziggurat@lemmy.world 1 points 1 day ago

I have that one too, but my alias is called icat

[–] moopet@sh.itjust.works 1 points 1 day ago
git() {
  if [ "$1" = "cd" ]; then
    shift
    cd "./$(command git rev-parse --show-cdup)$*"
  else
    command git "$@"
  fi
}

This lets you run git cd to go to the root of your repo, or git cd foo/bar to go to a path relative to that root. You can't do it as an alias because it's conditional, and you can't do it as a git-cd command because that wouldn't affect the current shell.

[–] djblw@lemmy.world 5 points 2 days ago

This tmux wrapper is remarkably convenient:

Usage:

# Usage: t [session-name]
#
# With no arguments:
#   Lists existing tmux sessions, or prints "[No sessions]" if none exist.
#
# With a session name:
#   Attempts to attach to the named tmux session.
#   If the session does not exist, creates a new session with that name.
#
# Examples:
#   t            # Lists all tmux sessions
#   t dev        # Attaches to "dev" session or creates it if it doesn't exist

function t {
	if [[ -z $1 ]]; then
		tmux ls 2> /dev/null || echo "[No sessions]"
	else
		tmux attach -t $@ 2> /dev/null
		if [[ $? -ne 0 ]]; then
			tmux new -s $@
		fi
	fi
}
[–] gonzo-rand19@moist.catsweat.com 17 points 2 days ago (2 children)

Here are probably the most useful ones. I prefer for rm to be interactive so I don't accidentally delete something important and for mkdir to create a parent directory if necessary.

alias rm='rm -i'
alias mkdir='mkdir -p'
alias podup='podman-compose down && podman-compose pull && podman-compose up -d'

This extract function (which I didn't make myself, I got it from when I was using nakeDeb) has been pretty useful too.

function extract()
{
     if [ -f $1 ] ; then
         case $1 in
             *.tar.bz2)   tar xvjf $1     ;;
             *.tar.gz)    tar xvzf $1     ;;
             *.bz2)       bunzip2 $1      ;;
             *.rar)       unrar x $1      ;;
             *.gz)        gunzip $1       ;;
             *.tar)       tar xvf $1      ;;
             *.tbz2)      tar xvjf $1     ;;
             *.tgz)       tar xvzf $1     ;;
             *.zip)       unzip $1        ;;
             *.Z)         uncompress $1   ;;
             *.7z)        7z x $1         ;;
             *.xz)        unxz $1         ;;
             *)           echo "'$1' cannot be extracted via >extract<" ;;
         esac
     else
         echo "'$1' is not a valid file"
     fi
}
load more comments (2 replies)
[–] hallettj@leminal.space 8 points 2 days ago

One of favorites cds to the root of a project directory from a subdirectory,

# Changes to top-level directory of git repository.
alias gtop="cd \$(git rev-parse --show-toplevel)"
[–] Bo7a@lemmy.ca 11 points 2 days ago (2 children)
#Create a dir and cd into it
mkcd() { mkdir -p "$@" && cd "$@"; }
[–] iliketurtiles@programming.dev 2 points 1 day ago* (last edited 1 day ago)

Here's a script I use a lot that creates a temporary directory, cds you into it, then cleans up after you exit. Ctrl-D to exit, and it takes you back to the directory you were in before.

Similar to what another user shared replying to this comment but mine is in bash + does these extra stuff.

#!/bin/bash

function make_temp_dir {
    # create a temporary directory and cd into it.
    TMP_CURR="$PWD";
    TMP_TMPDIR="$(mktemp -d)";
    cd "$TMP_TMPDIR";
}

function del_temp_dir {
    # delete the temporary directory once done using it.
    cd "$TMP_CURR";
    rm -r "$TMP_TMPDIR";
}

function temp {
    # create an empty temp directory and cd into it. Ctr-D to exit, which will
    # delete the temp directory
    make_temp_dir;
    bash -i;
    del_temp_dir;
}

temp
load more comments (1 replies)
[–] t0mri@lemmy.ml 1 points 1 day ago

well i have a script. ive named it "shazam". it either creates or attachs to a tmux session named after the base name of the dir (first arg or current working directory). i also have "fzf-shazam" as the same suggests itll open a fzf finder to choose a dir to "shazam"

[–] SuperiorOne@lemmy.ml 4 points 2 days ago

jmpd(jump directory): fuzzy finds and opens directory with fzf

# fish shell
function jmpd
    set _selection $(fzf --walker=dir);
    if test -n "$_selection"
        cd "$_selection";
    end
end
[–] MangoCats@feddit.it 4 points 2 days ago (1 children)

I have a collection of about 8 machines around the house (a lot of Raspberry Pi) that I ssh around to from various points.

I have setup scripts named: ssp1 ssp2 ssba ss2p etc. to ssh into the various machines, and of course shared public ssh keys among them to skip the password prompt. So, yes, once you are "in" one machine in my network, if you know this, you are "in" all of them, but... it's bloody convenient.

load more comments (1 replies)
[–] jcs@lemmy.world 2 points 1 day ago

I wrote this suite of scripts a few years ago and still use them to:

  1. Boot into Ventoy and select a Debian Live environment
  2. Optional: connect a storage device (local partition, USB drive, etc) for persistent storage
  3. Modify cfg/cfg.sh if it's the first time using the tool
  4. Run setup.sh to configure the environment into a familiar/productive state

The tools are flexible on hardware (more directed toward x64 systems at this time), and I (almost) never have to worry about OS upgrades. Just boot into a newer live OS image once it's ready. They are still a work-in-progress and still have a few customizations that I should abstract for more general use, but it's FOSS in case anyone has merge requests, issues, suggestions, etc.

[–] kittenroar@beehaw.org 4 points 2 days ago

here we go:

dedup:

#!/usr/bin/awk -f
!x[$0]++

this removes duplicate lines, preserving line order

iter:

#!/usr/bin/bash
if [[ "${@}" =~ /$ ]]; then
    xargs -rd '\n' -I {} "${@}"{}
else
    xargs -rd '\n' -I {} "${@}" {}
fi

This executes a command for each line. It can also be used to compare two directories, ie:

du -sh * > sizes; ls | iter du -sh ../kittens/ > sizes2

fadeout:

#!/bin/bash
# I use this to fade out layered brown noise that I play at a volume of 130%
# This takes about 2 minutes to run, and the volume is at zero several seconds before it's done.
# ################
# DBUS_SESSION_BUS_ADDRESS is needed so that playerctl can find the dbus to use MPRIS so it can control mpv
export DBUS_SESSION_BUS_ADDRESS="unix:path=/run/user/1000/bus"
# ################
for i in {130..0}
do
    volume=$(echo "scale=3;$i/100" | bc)
    sleep 2.3
    playerctl --player=mpv volume $volume
done

lbn:

#!/bin/bash
#lbn_pid=$(cat ~/.local/state/lbn.pid)
if pgrep -fl layered_brown
then
	pkill -f layered_brown
else
	export DBUS_SESSION_BUS_ADDRESS="unix:path=/run/user/1000/bus"
	mpv -ao pulse ~/layered_brown_noise.mp3 >>lbn.log 2>&1 &
	sleep 3
	playerctl -p mpv volume 1.3 >>lbn.log 2>&1 &
fi

This plays "layered brown noise" by crysknife. It's a great sleep aid.

here are some aliases:

alias m='mpc random off; mpc clear'
alias mpcc='ncmpcpp'
alias thesaurus='dict -d moby-thesaurus'
alias wtf='dict -d vera'
alias tvplayer='mpv -fs --geometry=768x1366+1366+0'
[–] irotsoma@lemmy.blahaj.zone 2 points 2 days ago (1 children)

I alias traditional stuff to better, usually drop-in versions of that thing on computers that have the better thing. I often forget which systems have the better thing, so this helps me get the better experience if I was able to install it at some point. For example I alias cat to bat, or top to htop, or dig to drill, etc.

[–] ter_maxima@jlai.lu 1 points 1 day ago

alias ed=$EDITOR is my most used alias by far.

[–] data1701d@startrek.website 3 points 2 days ago (4 children)

I use Clevis to auto-unlock my encrypted root partition with my TPM; this means when my boot partition is updated (E.G a kernel update), I have to update the PCR register values in my TPM. I do it with my little script /usr/bin/update_pcr:

#!/bin/bash
clevis luks regen -d /dev/nvme1n1p3 -s 1 tpm2

I run it with sudo and this handles it for me. The only issue is I can't regenerate the binding immediately after the update; I have to reboot, manually enter my password to decrypt the drive, and then do it.

Now, if I were really fancy and could get it to correctly update the TPM binding immediately after the update, I would have something like an apt package shim with a hook that does it seamlessly. Honestly, I'm surprised that distributions haven't developed robust support for this; the technology is clearly available (I'm using it), but no one seems to have made a user-friendly way for the common user to have TPM encryption in the installer.

load more comments (4 replies)
[–] ter_maxima@jlai.lu 1 points 1 day ago* (last edited 1 day ago)

ganis :

git add -A && sudo nixos-rebuild switch --impure -j$(nproc)

Everyone who uses nixos probably has a similar alias set x)

[–] spv@lemmy.spv.sh 4 points 2 days ago
alias bat="batcat"
alias msc="ncmpcpp"
alias xcp="xclip -selection clipboard"
alias wgq="sudo wg-quick"

also a couple to easily power on/off my 4g modem

[–] some_guy@lemmy.sdf.org 3 points 2 days ago* (last edited 2 days ago)

On MacOS, to open the current directory in Finder: alias f='open -a Finder ./'

[–] JTskulk@lemmy.world 3 points 2 days ago (2 children)

Hey OP, consider using $XDG_RUNTIME_DIR instead of /tmp. It's now the more proper place for these kinds of things to avoid permission issues, although I'm sure you're on a single user system like most people. I have clipboard actions set to download with yt-dlp :)

My favorite aliases are:

alias dff='findmnt -D -t nosquashfs,notmpfs,nodevtmpfs,nofuse.portal,nocifs,nofuse.kio-fuse'

alias lt='ls -t | less'

load more comments (2 replies)
[–] thingsiplay@beehaw.org 3 points 2 days ago

Here is on that I actually don't use, but want to use it in scripts. It is meant to be used by piping it. It's simple branch with user interaction. I don't even know if there is a standard program doing exactly that already.

# usage: yesno [prompt]
# example:
#   yesno && echo yes
#   yesno Continue? && echo yes || echo no
yesno() {
    local prompt
    local answer
    if [[ "${#}" -gt 0 ]]; then
        prompt="${*} "
    fi
    read -rp "${prompt}[y/n]: " answer
    case "${answer}" in
    [Yy0]*) return 0 ;;
    [Nn1]*) return 1 ;;
    *) return 2 ;;
    esac
}
[–] mina86@lemmy.wtf 8 points 2 days ago

For doing stuff in a directory, I use a replacement for cd command.

For aliases:

alias +='git add'
alias +p='git add -p'
alias +u='git add -u'
alias -- -='cd -'
alias @='for i in'
alias c='cargo'
alias date='LANG=C date'
alias diff='cdiff'
alias gg='git grep -n'
alias grep='grep --color=auto'
alias ll='ls -o'
alias ls='ls -vFT0 --si --color=auto --time-style=long-iso'
alias rmd='rmdir'

I also have various small scripts and functions:

  • a for package management (think apt but has simplified arguments which makes it faster to use in usual cases),
  • e for opening file in Emacs,
  • g for git,
  • s for sudo.

And here’s ,:

$ cat ~/.local/bin/,
#!/bin/sh

if [ $# -eq 0 ]; then
	paste -sd,
else
	printf '%s\n' "$@" | paste -sd,
fi
[–] olafurp@lemmy.world 2 points 2 days ago* (last edited 2 days ago)

g-push

git push origin `git branch --show`
[–] danielquinn@lemmy.ca 5 points 2 days ago (1 children)

I have a few interesting ones.

Download a video:

alias yt="yt-dlp -o '%(title)s-%(id)s.%(ext)s' "

Execute the previous command as root:

alias please='sudo $(fc -n -l -1)'

Delete all the Docker things. I do this surprisingly often:

alias docker-nuke="docker system prune --all --volumes --force"

This is a handy one for detecting a hard link

function is-hardlink {
  count=$(stat -c %h -- "${1}")
  if [ "${count}" -gt 1 ]; then
    echo "Yes.  There are ${count} links to this file."
  else
    echo "Nope.  This file is unique."
  fi
}

I run this one pretty much every day. Regardless of the distro I'm using, it Updates All The Things:

function up {
  if [[ $(command -v yay) ]]; then
    yay -Syu --noconfirm
    yay -Yc --noconfirm
  elif [[ $(command -v apt) ]]; then
    sudo apt update
    sudo apt upgrade -y
    sudo apt autoremove -y
  fi
  flatpak update --assumeyes
  flatpak remove --unused --assumeyes
}

I maintain an aliases file in GitLab with all the stuff I have in my environment if anyone is curious.

[–] golden_zealot@lemmy.ml 11 points 2 days ago (1 children)

Execute the previous command as root

Fun fact if you are using bash, !! will evaluate to the previous command, so if you miss sudo on some long command, you can also just do sudo !!.

[–] jwt@programming.dev 4 points 2 days ago

With the added benefit of it looking like you're yelling at your prompt in order to get it to use sudo.

[–] Stubb@lemmy.sdf.org 4 points 2 days ago
function seesv
    column -s, -t < $argv[1] | less -#2 -N -S
end

I used this a lot when I had to deal with CSV files — it simply shows the data in a nice format. It's an alias for the fish shell by the way.

[–] vortexal@lemmy.ml 4 points 2 days ago (2 children)

I've only used aliases twice so far. The first was to replace yt-dlp with a newer version because the version that comes pre-installed in Linux Mint is too outdated to download videos from YouTube. The second was because I needed something called "Nuget". I don't remember exactly what Nuget is but I think it was a dependency for some application I tried several months ago.

alias yt-dlp='/home/j/yt-dlp/yt-dlp'
alias nuget="mono /usr/local/bin/nuget.exe"
[–] vithigar@lemmy.ca 5 points 2 days ago (1 children)

Nuget is a the .NET package manager. Like npm or pip, but for .NET projects.

If you needed it for a published application that strikes me as fairly strange.

[–] vortexal@lemmy.ml 4 points 2 days ago* (last edited 2 days ago) (1 children)

I looked through my bash history and it looks like I needed it to build an Xbox eeprom editor for Xemu. Xemu doesn't (or at least didn't, I haven't used newer versions yet) have a built in eeprom editor and editing the Xbox eeprom is required for enabling both wide screen and higher resolutions for the games that support them natively.

I just looked at Xemu's documentation, and it looks like they've added a link to an online eeprom editor, so the editor I used (which they do still link to) is no longer required.

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