From e7e96eb378e10cb6103c03f01c578c6f50c644d9 Mon Sep 17 00:00:00 2001 From: PandaCoderPL Date: Mon, 8 Nov 2021 16:35:34 +0000 Subject: [PATCH] Change short to long options in Bash Config Signed-off-by: PandaCoderPL --- CHANGELOG.md | 4 ++++ VERSION | 2 +- home/.bashrc | 4 ++-- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f46f841..63fc72a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.2.6] - 2021-11-08 +### Changed +- Short to long options in [Bash Config](home/.bashrc) + ## [1.2.5] - 2021-11-03 ### Added - Clipboard aliases to [Bash Config](home/.bashrc) diff --git a/VERSION b/VERSION index c813fe1..3c43790 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.2.5 +1.2.6 diff --git a/home/.bashrc b/home/.bashrc index e8b45a4..b97d2df 100644 --- a/home/.bashrc +++ b/home/.bashrc @@ -7,7 +7,7 @@ alias vimconfig='vim ${HOME}/.vimrc' # Utils alias copy='termux-clipboard-set' alias l='ls' -alias lh='l -h' +alias lh='l --human-readable' alias ll='lh -l' -alias la='ll -a' +alias la='ll --all' alias paste='termux-clipboard-paste'