-- Leo's gemini proxy

-- Connecting to freeshell.de:1965...

-- Connected

-- Sending request

-- Meta line: 20 text/gemini;lang=en-GB

alias


> Creates aliases -- words that are replaced by a command string.

> Aliases expire with the current shell session unless defined in the shell's configuration file, e.g. `~/.bashrc`.

More information.


List all aliases:

alias

Create a generic alias:

alias {word}="{command}"

View the command associated to a given alias:

alias {word}

Remove an aliased command:

unalias {word}

Turn `rm` into an interactive command:

alias {rm}="{rm --interactive}"

Create `la` as a shortcut for `ls --all`:

alias {la}="{ls --all}"


> Copyright © 2014—present the tldr-pages team and contributors.

> This work is licensed under the Creative Commons Attribution 4.0 International License (CC-BY).

CC-BY



-- Response ended

-- Page fetched on Tue May 21 00:02:54 2024