From 9cf5c2cce3120ff7c3576e2506508392daaa87d4 Mon Sep 17 00:00:00 2001 From: inference Date: Wed, 1 Mar 2023 01:53:07 +0000 Subject: [PATCH] Add Tools section. Add diff alias to force outputting whether files are identical instead of only if they differ. Remove unnecessary periods from section comments. --- desktop/zsh/.zsh-alias-global | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/desktop/zsh/.zsh-alias-global b/desktop/zsh/.zsh-alias-global index 4599a51..a3ae5bc 100644 --- a/desktop/zsh/.zsh-alias-global +++ b/desktop/zsh/.zsh-alias-global @@ -4,10 +4,10 @@ # Copyright 2022-2023 Jake Winters # SPDX-License-Identifier: GPL-3.0-or-later -# Version: 2.0.0.6 +# Version: 3.0.0.7 -# Navigation. +# Navigation alias ..='cd ..' alias cl='clear' alias l='ls -CF --color=auto' @@ -16,9 +16,12 @@ alias ll='ls -l --color=auto' alias ls='ls -F --color=auto' alias tr='tree -C' -# File management. +# File management alias clp='wl-copy' alias cp='rsync -acv' alias md='mkdir -v' alias mv='mv -iv' alias rm='rm -iv' + +# Tools +alias diff='diff -s'