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.

This commit is contained in:
inference 2023-03-01 01:53:07 +00:00
parent e00d029ec6
commit 9cf5c2cce3
Signed by: inference
SSH Key Fingerprint: SHA256:9Pl0nZ2UJacgm+IeEtLSZ4FOESgP1eKCtRflfPfdX9M

View File

@ -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'