From 2a167aa8cba43c5c17eed3aad4ed0e15fc40c3a8 Mon Sep 17 00:00:00 2001 From: Sebastien Rousseau Date: Sun, 6 Nov 2022 11:54:44 +0000 Subject: [PATCH 01/13] fix(archives): updated archives aliases --- lib/aliases/archiver/archiver.aliases.sh | 34 ------------------- lib/aliases/archives/archives.aliases.sh | 42 ++++++++++++++++++++++++ 2 files changed, 42 insertions(+), 34 deletions(-) delete mode 100644 lib/aliases/archiver/archiver.aliases.sh create mode 100644 lib/aliases/archives/archives.aliases.sh diff --git a/lib/aliases/archiver/archiver.aliases.sh b/lib/aliases/archiver/archiver.aliases.sh deleted file mode 100644 index e4839b89..00000000 --- a/lib/aliases/archiver/archiver.aliases.sh +++ /dev/null @@ -1,34 +0,0 @@ -#!/usr/bin/env bash -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.462) - https://dotfiles.io -# Made with β™₯ in London, UK by @sebastienrousseau -# Copyright (c) 2015-2022. All rights reserved -# License: MIT - -# πŸ…°πŸ†πŸ…²πŸ…·πŸ…ΈπŸ†…πŸ…΄πŸ† πŸ…°πŸ…»πŸ…ΈπŸ…°πŸ†‚πŸ…΄πŸ†‚ -if command -v 7z &>/dev/null; then - alias c7z='7z a' # c7z: Compress a whole directory (including subdirectories) to a 7z file. - alias e7z='7z x' # e7z: Extract a whole directory (including subdirectories) from a 7z file. -fi - -if command -v tar &>/dev/null; then - alias cbz='tar -cvjf' # cbz: Compress a whole directory (including subdirectories) to a bz2 file. - alias cgz='tar -zcvf' # cgz: Compress a whole directory (including subdirectories) to a tarball. - alias cxz='tar -cvJf' # cxz: Compress a whole directory (including subdirectories) to a xz file. - alias ebz='tar -xvjf' # ebz: Extract a whole directory (including subdirectories) from a bz2 file. - alias egz='tar -xvzf' # egz: Extract a whole directory (including subdirectories) - alias exz='tar -xvJf' # exz: Extract a whole directory (including subdirectories) from a xz file. -fi - -if command -v jar &>/dev/null; then - alias cear='jar cvf' # cear: Compress a whole directory (including subdirectories) to a ear file. - alias cjar='jar cvf' # cjar: Compress a whole directory (including subdirectories) to a jar file. - alias cwar='jar cvf' # cwar: Compress a whole directory (including subdirectories) to a war file. - alias eear='jar xvf' # eear: Extract a whole directory (including subdirectories) from a ear file. - alias ejar='jar xvf' # ejar: Extract a whole directory (including subdirectories) from a jar file. - alias ewar='jar xvf' # ewar: Extract a whole directory (including subdirectories) from a war file. -fi - -if command -v zip &>/dev/null; then - alias czip='zip -r' # czip: Compress a whole directory (including subdirectories) to a zip file. - alias ezip='unzip' # ezip: Extract a whole directory (including subdirectories) from a zip file. -fi diff --git a/lib/aliases/archives/archives.aliases.sh b/lib/aliases/archives/archives.aliases.sh new file mode 100644 index 00000000..289140a7 --- /dev/null +++ b/lib/aliases/archives/archives.aliases.sh @@ -0,0 +1,42 @@ +#!/usr/bin/env bash +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.462) - https://dotfiles.io +# Made with β™₯ in London, UK by @sebastienrousseau +# Copyright (c) 2015-2022. All rights reserved +# License: MIT + +# πŸ…°πŸ†πŸ…²πŸ…·πŸ…ΈπŸ†…πŸ…΄πŸ†‚ πŸ…°πŸ…»πŸ…ΈπŸ…°πŸ†‚πŸ…΄πŸ†‚ +if command -v 7z &>/dev/null; then + alias c7z='7z a' # c7z: Compress a whole directory (including subdirectories) to a 7z file. + alias e7z='7z x' # e7z: Extract a whole directory (including subdirectories) from a 7z file. +fi + +if command -v tar &>/dev/null; then + alias cbz2='tar -cvjf' # cbz2: Compress a file to a bz2 file. + alias ctar='tar -cvf' # ctar: Compress a whole directory (including subdirectories) to a tar file. + alias etar='tar -xvf' # etar: Extract a whole directory (including subdirectories) from a tar file. + alias cgz='tar -zcvf' # cgz: Compress a file to a gz file. + alias cxz='tar -cvJf' # cxz: Compress a whole directory (including subdirectories) to a xz file. + alias ebz2='tar -xvjf' # ebz2: Extract a file from a bz2 file. + alias egz='tar -xvzf' # egz: Extract a file from a gz file. + alias exz='tar -xvJf' # exz: Extract a whole directory (including subdirectories) from a xz file. +fi + +if command -v jar &>/dev/null; then + alias cjar='jar -cvf' # cjar: Compress a whole directory (including subdirectories) to a jar file. + alias ejar='jar -xvf' # ejar: Extract a whole directory (including subdirectories) from a jar file. +fi + +if command -v xz &>/dev/null; then + alias cxz='xz -zcvf' # cxz: Compress a whole directory (including subdirectories) to a xz file. + alias exz='xz -zxvf' # exz: Extract a whole directory (including subdirectories) from a xz file. +fi + +if command -v zip &>/dev/null; then + alias cz='zip -r' # czip: Compress a whole directory (including subdirectories) to a zip file. + alias ez='unzip' # ezip: Extract a whole directory (including subdirectories) from a zip file. +fi + +if command -v zstd &>/dev/null; then + alias czstd='zstd -zcvf' # czstd: Compress a whole directory (including subdirectories) to a zstd file. + alias ezstd='zstd -zxvf' # ezstd: Extract a whole directory (including subdirectories) from a zstd file. +fi From 3f624b6ff62b0016416f2bed33fc8cc110b23c2b Mon Sep 17 00:00:00 2001 From: Sebastien Rousseau Date: Sun, 6 Nov 2022 13:20:11 +0000 Subject: [PATCH 02/13] fix(aliases): updated clear and configuration aliases --- lib/aliases/clear/clear.aliases.sh | 32 +++++++++---------- .../configuration/configuration.aliases.sh | 10 +++--- 2 files changed, 21 insertions(+), 21 deletions(-) diff --git a/lib/aliases/clear/clear.aliases.sh b/lib/aliases/clear/clear.aliases.sh index 8c5d9e30..9a70301a 100644 --- a/lib/aliases/clear/clear.aliases.sh +++ b/lib/aliases/clear/clear.aliases.sh @@ -5,19 +5,19 @@ # License: MIT # πŸ…²πŸ…»πŸ…΄πŸ…°πŸ† πŸ…°πŸ…»πŸ…ΈπŸ…°πŸ†‚πŸ…΄πŸ†‚ -alias c="clear" # c: Clear screen shortcut. -alias cl="c" # cl: Clear screen shortcut. -alias clc="clear && cat" # clc: Clear the screen and show the current file. -alias clcat="clc" # clcat: Clear the screen and show the current file. -alias clh="clear && history" # clh: Clear the screen and show the history. -alias clhist="clh" # clhist: Clear the screen and show the history. -alias clp="clear && pwd" # clp: Clear the screen and show the current directory. -alias clpwd="clp" # clpwd: Clear the screen and show the current directory. -alias clr="c" # clr: Clear screen shortcut. -alias cls="c" # cls: Clear screen shortcut. -alias clt="clear && tree" # clt: Clear the screen and show the current directory tree. -alias cltree="clt" # cltree: Clear the screen and show the current directory tree. -alias ct="clear && tree ./" # ct: Clear screen and list directory contents. -alias ctree="ct" # ctree: Clear screen and list directory contents. -alias cpl="clear && pwd && echo '' && ls -a && echo ''" # cpl: Clear the screen, show the current directory, and list all files. -alias cplt="clear && pwd && echo '' && tree ./ && echo ''" # cplt: Clear the screen and show the current directory and tree. +alias c="clear" # c: Clear the terminal screen. +alias cl="c" # cl: Clear the terminal screen. +alias clc="clear && cat" # clc: Clear the terminal screen and print the contents of the current directory. +alias clcat="clc" # clcat: Clear the terminal screen and print the contents of the current directory. +alias clh="clear && history" # clh: Clear the terminal screen and print the command history. +alias clhist="clh" # clhist: Clear the terminal screen and print the command history. +alias clp="clear && pwd" # clp: Clear the terminal screen and print the current working directory. +alias clpwd="clp" # clpwd: Clear the terminal screen and print the current working directory. +alias clr="c" # clr: Clear the terminal screen. +alias cls="c" # cls: Clear the terminal screen. +alias clt="clear && tree" # clt: Clear the terminal screen and print the directory tree. +alias cltree="clt" # cltree: Clear the terminal screen and print the directory tree. +alias ct="clear && tree ./" # ct: Clear the terminal screen and print the directory tree. +alias ctree="ct" # ctree: Clear the terminal screen and print the directory tree. +alias cpl="clear && pwd && echo '' && ls -a && echo ''" # cpl: Clear the terminal screen and print the current working directory and the contents of the current directory. +alias cplt="clear && pwd && echo '' && tree ./ && echo ''" # cplt: Clear the terminal screen and print the current working directory and the directory tree. diff --git a/lib/aliases/configuration/configuration.aliases.sh b/lib/aliases/configuration/configuration.aliases.sh index 3133b4a4..1bd77614 100644 --- a/lib/aliases/configuration/configuration.aliases.sh +++ b/lib/aliases/configuration/configuration.aliases.sh @@ -5,8 +5,8 @@ # License: MIT # πŸ…²πŸ…ΎπŸ…½πŸ…΅πŸ…ΈπŸ…ΆπŸ†„πŸ†πŸ…°πŸ†ƒπŸ…ΈπŸ…ΎπŸ…½ πŸ…°πŸ…»πŸ…ΈπŸ…°πŸ†‚πŸ…΄πŸ†‚ -alias bash_profile='${=EDITOR} $HOME/.bash_profile' # bash_profile: Ouvre le fichier de configuration bash_profile -alias bashrc='${=EDITOR} $HOME/.bashrc' # bashrc: Ouvre le fichier de configuration bashrc -alias gitconfig='${=EDITOR} $HOME/.gitconfig' # gitconfig: Ouvre le fichier de configuration gitconfig -alias gitignore='${=EDITOR} $HOME/.gitignore' # gitignore: Ouvre le fichier de configuration gitignore -alias zshrc='${=EDITOR} $HOME/.zshrc' # zshrc: Ouvre le fichier de configuration zshrc +alias bshp='${=EDITOR} $HOME/.bash_profile' # bshp: Open the Bash profile in the default text editor. +alias bshrc='${=EDITOR} $HOME/.bashrc' # bshrc: Open the Bash configuration file in the default text editor. +alias gcfg='${=EDITOR} $HOME/.gitconfig' # gcfg: Open the Git configuration file in the default text editor. +alias gign='${=EDITOR} $HOME/.gitignore' # gign: Open the Git ignore file in the default text editor. +alias zshrc='${=EDITOR} $HOME/.zshrc' # zshrc: Open the Zsh configuration file in the default text editor. From 27802da291bf826f4516ae111a6edd7872062b42 Mon Sep 17 00:00:00 2001 From: Sebastien Rousseau Date: Sun, 6 Nov 2022 13:40:30 +0000 Subject: [PATCH 03/13] fix(aliases): updated dig aliases --- lib/aliases/dig/dig.aliases.sh | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/lib/aliases/dig/dig.aliases.sh b/lib/aliases/dig/dig.aliases.sh index 38c4945a..bd43186e 100644 --- a/lib/aliases/dig/dig.aliases.sh +++ b/lib/aliases/dig/dig.aliases.sh @@ -6,11 +6,14 @@ # πŸ…³πŸ…ΈπŸ…Ά πŸ…°πŸ…»πŸ…ΈπŸ…°πŸ†‚πŸ…΄πŸ†‚ if command -v dig &>/dev/null; then + alias d='$(which dig)' # d: Run the dig command with the default options. + alias d4='$(which dig) +short -4' # d4: Perform a DNS lookup for an IPv4 address. + alias d6='$(which dig) +short -6' # d6: Perform a DNS lookup for an IPv6 address. alias dga='$(which dig) +all ANY' # dga: Perform a DNS lookup for all records. - alias dgs='$(which dig) +short' # dgs: Perform a DNS lookup. + alias dgs='$(which dig) +short' # dgs: Perform a DNS lookup for a short answer. alias digg='$(which dig) @8.8.8.8 +nocmd any +multiline +noall +answer' # digg: Dig with Google's DNS. - alias ip4='$(which dig) +short myip.opendns.com @resolver1.opendns.com -4' # ip4: Display the public IPv4 address. - alias ip6='$(which dig) -6 AAAA +short myip.opendns.com. @resolver1.opendns.com.' # ip6: Get the public IPv6 address. - alias ips='ip4; ip6' # ips: Display all IP addresses. - alias wip='$(which dig) +short myip.opendns.com @resolver1.opendns.com' # wip: Get public IP address. + alias ip4='$(which dig) +short myip.opendns.com @resolver1.opendns.com -4' # ip4: Get your public IPv4 address. + alias ip6='$(which dig) -6 AAAA +short myip.opendns.com. @resolver1.opendns.com.' # ip6: Get your public IPv6 address. + alias ips='ip4; ip6' # ips: Get your public IPv4 and IPv6 addresses. + alias wip='$(which dig) +short myip.opendns.com @resolver1.opendns.com' # wip: Get your public IP address. fi From e1fbc6a7ab40c3127357c558e428d42a61b71b20 Mon Sep 17 00:00:00 2001 From: Sebastien Rousseau Date: Sun, 6 Nov 2022 14:19:24 +0000 Subject: [PATCH 04/13] fix(aliases): updated disk usage aliases --- lib/aliases/diskusage/diskusage.aliases.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/aliases/diskusage/diskusage.aliases.sh b/lib/aliases/diskusage/diskusage.aliases.sh index 51c410b2..5e1bddf1 100644 --- a/lib/aliases/diskusage/diskusage.aliases.sh +++ b/lib/aliases/diskusage/diskusage.aliases.sh @@ -6,10 +6,11 @@ # πŸ…³πŸ…ΈπŸ†‚πŸ…Ί πŸ†„πŸ†‚πŸ…°πŸ…ΆπŸ…΄ πŸ…°πŸ…»πŸ…ΈπŸ…°πŸ†‚πŸ…΄πŸ†‚ if command -v du &>/dev/null; then + alias du="du -h" # du: Display the disk usage of the current directory. alias du1='du -hxd 1 | sort -h' # du1: File size of files and directories in current directory. alias ducks="du -cks * .*| sort -rn | head -n 10" # ducks: Top 10 largest files and directories in current directory. - alias duh='du -h' # duh: File size of files and directories. + alias duh='du' # duh: File size of files and directories. alias dus='du -hs *' # dus: File size human readable output sorted by size. alias dusym="du * -hsLc" # dusym: File size of files and directories in current directory including symlinks. - alias dut='du -hs' # dut: Total file size of current directory. + alias dut='dus' # dut: Total file size of current directory. fi From 504659159d2d6920e6d02e5a1784ec66efca6e9d Mon Sep 17 00:00:00 2001 From: Sebastien Rousseau Date: Sun, 6 Nov 2022 15:14:33 +0000 Subject: [PATCH 05/13] fix(aliases): editor aliases --- lib/aliases/editor/editor.aliases.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/aliases/editor/editor.aliases.sh b/lib/aliases/editor/editor.aliases.sh index c7aa6f39..62a13e7b 100644 --- a/lib/aliases/editor/editor.aliases.sh +++ b/lib/aliases/editor/editor.aliases.sh @@ -5,7 +5,7 @@ # License: MIT # πŸ…΄πŸ…³πŸ…ΈπŸ†ƒπŸ…ΎπŸ† πŸ…°πŸ…»πŸ…ΈπŸ…°πŸ†‚πŸ…΄πŸ†‚ -editors="nano vim vi emacs code atom subl sublime textmate mate gedit geany" +editors="nano vim vi code gedi notepad++" for editor in ${editors}; do if command -v "${editor}" &>/dev/null; then alias e='${editor}' # e: Edit a file. From e94f631c6a34e5594b94f7f6f04852d94384dd8d Mon Sep 17 00:00:00 2001 From: Sebastien Rousseau Date: Sun, 6 Nov 2022 17:21:37 +0000 Subject: [PATCH 06/13] fix(aliases): NPM aliases --- lib/aliases/npm/npm.aliases.sh | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/lib/aliases/npm/npm.aliases.sh b/lib/aliases/npm/npm.aliases.sh index d7b9ca2d..496197d3 100644 --- a/lib/aliases/npm/npm.aliases.sh +++ b/lib/aliases/npm/npm.aliases.sh @@ -6,19 +6,19 @@ # πŸ…½πŸ…ΏπŸ…Ό πŸ…°πŸ…»πŸ…ΈπŸ…°πŸ†‚πŸ…΄πŸ†‚ if command -v npm &>/dev/null; then - alias npb='npm build ' # npb: Build npm script. - alias npc='npm cache ' # npc: Cache npm package. - alias npd='npm dev ' # npd: Dev npm script. - alias npg='npm global ' # npg: Global npm package. - alias npi='npm install ' # npi: Install npm package. - alias npl='npm list ' # npl: List npm packages. - alias npp='npm publish ' # npp: Publish npm package. - alias npr='npm run ' # npr: Run npm script. - alias nprw='npm run watch ' # nprw: Run npm script watch. - alias nps='npm start ' # nps: Start npm script. - alias npsv='npm serve ' # npsv: Serve npm script. - alias npt='npm test ' # npt: Test npm script. - alias npu='npm update ' # npu: Update npm package. - alias npx='npm exec ' # npx: Exec npm package. - alias npy='npm why ' # npy: Why npm package. + alias npb='npm build' # npb: Build npm script. + alias npc='npm cache' # npc: Cache npm package. + alias npd='npm dev' # npd: Dev npm script. + alias npg='npm global' # npg: Global npm package. + alias npi='npm install' # npi: Install npm package. + alias npl='npm list' # npl: List npm packages. + alias npp='npm publish' # npp: Publish npm package. + alias npr='npm run' # npr: Run npm script. + alias nprw='npm run watch' # nprw: Run npm script watch. + alias nps='npm start' # nps: Start npm script. + alias npsv='npm serve' # npsv: Serve npm script. + alias npt='npm test' # npt: Test npm script. + alias npu='npm update' # npu: Update npm package. + alias npx='npm exec' # npx: Exec npm package. + alias npy='npm why' # npy: Why npm package. fi From e4e11378e612e8ae0a400000b9d9bc857529fa6c Mon Sep 17 00:00:00 2001 From: Sebastien Rousseau Date: Sun, 6 Nov 2022 18:17:06 +0000 Subject: [PATCH 07/13] fix(aliases): Subversion aliases --- lib/aliases/subversion/subversion.aliases.sh | 154 +++++-------------- 1 file changed, 37 insertions(+), 117 deletions(-) diff --git a/lib/aliases/subversion/subversion.aliases.sh b/lib/aliases/subversion/subversion.aliases.sh index c001d04e..e649d6ac 100644 --- a/lib/aliases/subversion/subversion.aliases.sh +++ b/lib/aliases/subversion/subversion.aliases.sh @@ -5,122 +5,42 @@ # License: MIT # πŸ†‚πŸ†„πŸ…±πŸ†…πŸ…΄πŸ†πŸ†‚πŸ…ΈπŸ…ΎπŸ…½ πŸ…°πŸ…»πŸ…ΈπŸ…°πŸ†‚πŸ…΄πŸ†‚ - Subversion aliases. - if command -v svn &>/dev/null; then - ## ---------------------------------------------------------------------------- - ## 1.0 Subversion Core aliases. - ## ---------------------------------------------------------------------------- - - # sad: Put new files and directories under version control. - alias sad='svn add' - - # sau: Manage cached authentication credentials. - alias sau='svn auth' - - # sbl: Show when each line of a file was last (or next) changed. - alias sbl='svn blame' - - # scg: Associate (or dissociate) changelist CLNAME with the named files. - alias scg='svn changelist' - - # sco: Check out a working copy from a repository. - alias sco='svn checkout' - - # scl: Either recover from an interrupted operation that left the working copy - # locked, or remove unwanted files. - alias scl='svn cleanup' - - # sci: Send changes from your working copy to the repository. - alias sci='svn commit' - - # scp: Copy files and directories in a working copy or repository. - alias scp='svn copy' - - # sct: Output the content of specified files or URLs. - alias sct='svn cat' - - # sdi: Display local changes or differences between two revisions or paths. - alias sdi='svn diff' - - # sdl: Remove files and directories from version control. - alias sdl='svn delete' - - # shp: Describe the usage of this program or its subcommands. - alias shp='svn help' - - # sin: Display information about a local or remote item. - alias sin='svn info' - - # sip: Commit an unversioned file or tree into the repository. - alias sip='svn import' - - # slg: Show the log messages for a set of revision(s) and/or path(s). - alias slg='svn log' - - # slock: Lock working copy paths or URLs in the repository, so that no other - # user can commit changes to them. - alias slk='svn lock' - - # sls: List directory entries in the repository. - alias sls='svn list' - - # smd: Create a new directory under version control. - alias smd='svn mkdir' - - # smg: Merge changes into a working copy. - alias smg='svn merge' - - # smgi: Display merge-related information. - alias smgi='svn mergeinfo' - - # smv: Move (rename) an item in a working copy or repository. - alias smv='svn move' - - # sp: Set the value of a property on files, dirs, or revisions. - alias sp='svn propset' - - # spdl: Remove a property from files, dirs, or revisions. - alias spdl='svn propdel' - - # spdt: Edit a property with an external editor. - alias spdt='svn propedit' - - # spgt: Print the value of a property on files, dirs, or revisions. - alias spgt='svn propget' - - # sph: Apply a patch to a working copy. - alias sph='svn patch' - - # spls: List all properties on files, dirs, or revisions. - alias spls='svn proplist' - - # srl: Relocate the working copy to point to a different repository root URL. - alias srl='svn relocate' - - # srs: Resolve conflicts on working copy files or directories. - alias srs='svn resolve' - - # srsd: Remove 'conflicted' state on working copy files or directories. - alias srsd='svn resolved' - - # srv: Restore pristine working copy state (undo local changes). - alias srv='svn revert' - - # sst: Print the status of working copy files and directories. - alias sst='svn status' - - # ssw: Update the working copy to a different URL within the same repository. - alias ssw='svn switch' - - # sulk: Unlock working copy paths or URLs. - alias sulk='svn unlock' - - # sup: Bring changes from the repository into the working copy. - alias sup='svn update' - - # supg: Upgrade the metadata storage format for a working copy. - alias supg='svn upgrade' - - # sxp: Create an unversioned copy of a tree. - alias sxp='svn export' + alias sad='svn add' # sad: Put new files and directories under version control. + alias sau='svn auth' # sau: Manage cached authentication credentials. + alias sbl='svn blame' # sbl: Show when each line of a file was last (or next) changed. + alias scg='svn changelist' # scg: Associate (or dissociate) changelist CLNAME with the named files. + alias sci='svn commit' # sci: Send changes from your working copy to the repository. + alias scl='svn cleanup' # scl: Either recover from an interrupted operation that left the working copy locked, or remove unwanted files. + alias sco='svn checkout' # sco: Check out a working copy from a repository. + alias scp='svn copy' # scp: Copy files and directories in a working copy or repository. + alias sct='svn cat' # sct: Output the content of specified files or URLs. + alias sdi='svn diff' # sdi: Display local changes or differences between two revisions or paths. + alias sdl='svn delete' # sdl: Remove files and directories from version control. + alias shp='svn help' # shp: Describe the usage of this program or its subcommands. + alias sin='svn info' # sin: Display information about a local or remote item. + alias sip='svn import' # sip: Commit an unversioned file or tree into the repository. + alias slg='svn log' # slg: Show the log messages for a set of revision(s) and/or path(s). + alias slk='svn lock' # slock: Lock working copy paths or URLs in the repository, so that no other user can commit changes to them. + alias sls='svn list' # sls: List directory entries in the repository. + alias smd='svn mkdir' # smd: Create a new directory under version control. + alias smg='svn merge' # smg: Merge changes into a working copy. + alias smgi='svn mergeinfo' # smgi: Display merge-related information. + alias smv='svn move' # smv: Move (rename) an item in a working copy or repository. + alias sp='svn propset' # sp: Set the value of a property on files, dirs, or revisions. + alias spdl='svn propdel' # spdl: Remove a property from files, dirs, or revisions. + alias spdt='svn propedit' # spdt: Edit a property with an external editor. + alias spgt='svn propget' # spgt: Print the value of a property on files, dirs, or revisions. + alias sph='svn patch' # sph: Apply a patch to a working copy. + alias spls='svn proplist' # spls: List all properties on files, dirs, or revisions. + alias srl='svn relocate' # srl: Relocate the working copy to point to a different repository root URL. + alias srs='svn resolve' # srs: Resolve conflicts on working copy files or directories. + alias srsd='svn resolved' # srsd: Remove 'conflicted' state on working copy files or directories. + alias srv='svn revert' # srv: Restore pristine working copy state (undo local changes). + alias sst='svn status' # sst: Print the status of working copy files and directories. + alias ssw='svn switch' # ssw: Update the working copy to a different URL within the same repository. + alias sulk='svn unlock' # sulk: Unlock working copy paths or URLs. + alias sup='svn update' # sup: Bring changes from the repository into the working copy. + alias supg='svn upgrade' # supg: Upgrade the metadata storage format for a working copy. + alias sxp='svn export' # sxp: Create an unversioned copy of a tree. fi From 1f3ffcadb654be1c08d1cba6ac2a46c87264a552 Mon Sep 17 00:00:00 2001 From: Sebastien Rousseau Date: Sun, 6 Nov 2022 21:24:02 +0000 Subject: [PATCH 08/13] fix(aliases): updated aliases --- lib/aliases/default/default.aliases.sh | 42 ++++++++-------- lib/aliases/pnpm/pnpm.aliases.sh | 66 +++++++++++++------------- lib/aliases/ps/ps.aliases.sh | 12 +++++ lib/aliases/wget/wget.aliases.sh | 6 ++- 4 files changed, 70 insertions(+), 56 deletions(-) create mode 100644 lib/aliases/ps/ps.aliases.sh diff --git a/lib/aliases/default/default.aliases.sh b/lib/aliases/default/default.aliases.sh index 8c77942e..ac0378ec 100644 --- a/lib/aliases/default/default.aliases.sh +++ b/lib/aliases/default/default.aliases.sh @@ -5,27 +5,27 @@ # License: MIT # πŸ…³πŸ…΄πŸ…΅πŸ…°πŸ†„πŸ…»πŸ†ƒ πŸ…°πŸ…»πŸ…ΈπŸ…°πŸ†‚πŸ…΄πŸ†‚ -alias ':q'='quit' # q: Shortcut for the `exit` command. -alias bye='quit' # q: Shortcut for the `exit` command. -alias ctf='echo $(ls -1 | wc -l)' # ctf: Count the number of files in the current directory. -alias curl='curl --compressed' # curl: Use compression when transferring data. -alias da='date "+%Y-%m-%d %A %T %Z"' # da: Display the current date and time. -alias h='history' # h: Lists all recently used commands. -alias halt="sudo /sbin/halt" # halt: Shutdown the system. -alias ifconfig='sudo ifconfig' # ifconfig: Append sudo to ifconfig (configure network interface parameters) command. -alias ipinfo='ipconfig getpacket en0' # ipInfo0: Get network interface parameters for en0. -alias moon='curl -s "wttr.in/?format=%m"' # moon: Get the moon phase. -alias nls='sudo lsof -i -P | grep LISTEN' # nls: Show only active network listeners. -alias now='date +"%T"' # now: Show the current time. -alias op='sudo lsof -i -P' # op: List of open ports. -alias p='pwd' # p: Shortcut for `pwd` which returns working directory name. -alias path='echo ${PATH//:/\\n}' # path: Display the $PATH variable on newlines. -alias pid='ps -f' # pid: Display the uid, pid, parent pid, recent CPU usage, process start time, controlling tty, elapsed CPU usage, and the associated command. -alias ping='ping -c 5' # ping: Limit Ping to 5 ECHO_REQUEST packets. -alias please='sudo -' # sudo: Execute a command as the superuser. -alias ports='netstat -tulan' # ports: List all listening ports. -alias poweroff="sudo /sbin/shutdown" # poweroff: Poweroff the system. -alias ps='ps auxwww' # kp: Getting full path of executables. +alias ':q'='quit' # q: Shortcut for the `exit` command. +alias bye='quit' # q: Shortcut for the `exit` command. +alias ctf='echo $(ls -1 | wc -l)' # ctf: Count the number of files in the current directory. +alias curl='curl --compressed' # curl: Use compression when transferring data. +alias da='date "+%Y-%m-%d %A %T %Z"' # da: Display the current date and time. +alias h='history' # h: Lists all recently used commands. +alias halt="sudo /sbin/halt" # halt: Shutdown the system. +alias ifconfig='sudo ifconfig' # ifconfig: Append sudo to ifconfig (configure network interface parameters) command. +alias ipinfo='ipconfig getpacket en0' # ipInfo0: Get network interface parameters for en0. +alias moon='curl -s "wttr.in/?format=%m"' # moon: Get the moon phase. +alias nls='sudo lsof -i -P | grep LISTEN' # nls: Show only active network listeners. +alias now='date +"%T"' # now: Show the current time. +alias op='sudo lsof -i -P' # op: List of open ports. +alias p='pwd' # p: Shortcut for `pwd` which returns working directory name. +alias path='echo ${PATH//:/\\n}' # path: Display the $PATH variable on newlines. + +alias ping='ping -c 5' # ping: Limit Ping to 5 ECHO_REQUEST packets. +alias please='sudo -' # sudo: Execute a command as the superuser. +alias ports='netstat -tulan' # ports: List all listening ports. +alias poweroff="sudo /sbin/shutdown" # poweroff: Poweroff the system. + alias q='quit' # q: Shortcut for the `exit` command. alias qfind='find . -name ' # qfind: Quickly search for file. alias quit='exit' # q: Shortcut for the `exit` command. diff --git a/lib/aliases/pnpm/pnpm.aliases.sh b/lib/aliases/pnpm/pnpm.aliases.sh index dcacd7da..080b26f9 100644 --- a/lib/aliases/pnpm/pnpm.aliases.sh +++ b/lib/aliases/pnpm/pnpm.aliases.sh @@ -6,37 +6,37 @@ # πŸ…ΏπŸ…½πŸ…ΏπŸ…Ό πŸ…°πŸ…»πŸ…ΈπŸ…°πŸ†‚πŸ…΄πŸ†‚ - Pnpm aliases if command -v pnpm &>/dev/null; then - alias pa='pnpm add' # pa: Add a dependency to the project. - alias pad='pnpm add --save-dev' # pad: Add a dev dependency to the project. - alias pap='pnpm add --save-peer' # pap: Add a peer dependency to the project. - alias pau='pnpm audit' # pau: Audit the project. - alias pb='pnpm run build' # pb: Build the project. - alias pc='pnpm create' # pc: Create a new project. - alias pd='pnpm run dev' # pd: Run the project in dev mode. - alias pdoc='pnpm run doc' # pdoc: Generate the project documentation. - alias pga='pnpm add --global' # pga: Add a global dependency. - alias pgls='pnpm list --global' # pgls: List all global dependencies. - alias pgrm='pnpm remove --global' # pgrm: Remove a global dependency. - alias pgu='pnpm update --global' # pgu: Update a global dependency. - alias ph='pnpm help' # ph: Show the help. - alias pi='pnpm init' # pi: Initialize a new project. - alias pin='pnpm install' # pin: Install the project dependencies. - alias pln='pnpm run lint' # pln: Lint the project. - alias pls='pnpm list' # pls: List all dependencies. - alias pn='pnpm' # pn: Shortcut to pnpm. - alias pout='pnpm outdated' # pout: Check for outdated dependencies. - alias ppub='pnpm publish' # ppub: Publish the project. - alias prm='pnpm remove' # prm: Remove a dependency from the project. - alias prun='pnpm run' # prun: Run a script from the project. - alias ps='pnpm run serve' # ps: Run the project in serve mode. - alias pst='pnpm start' # pst: Start the project. - alias psv='pnpm server' # psv: Run the project in server mode. - alias pt='pnpm test' # pt: Test the project. - alias ptc='pnpm test --coverage' # ptc: Test the project with coverage. - alias pui='pnpm update --interactive' # pui: Update a dependency interactively. - alias puil='pnpm update --interactive --latest' # puil: Update a dependency interactively to the latest version. - alias pun='pnpm uninstall' # pun: Uninstall the project dependencies. - alias pup='pnpm update' # pup: Update a dependency. - alias pwhy='pnpm why' # pwhy: Check why a dependency is installed. - alias px='pnpx' # px: Shortcut to pnpx. + alias pna='pnpm add' # pna: Add a dependency to the project. + alias pnad='pnpm add --save-dev' # pnad: Add a dev dependency to the project. + alias pnap='pnpm add --save-peer' # pnap: Add a peer dependency to the project. + alias pnau='pnpm audit' # pnau: Audit the project. + alias pnb='pnpm run build' # pnb: Build the project. + alias pnc='pnpm create' # pnc: Create a new project. + alias pnd='pnpm run dev' # pnd: Run the project in dev mode. + alias pndoc='pnpm run doc' # pndoc: Generate the project documentation. + alias pnga='pnpm add --global' # pnga: Add a global dependency. + alias pngls='pnpm list --global' # pngls: List all global dependencies. + alias pngrm='pnpm remove --global' # pngrm: Remove a global dependency. + alias pngu='pnpm update --global' # pngu: Update a global dependency. + alias pnh='pnpm help' # pnh: Show the help. + alias pni='pnpm init' # pni: Initialize a new project. + alias pnin='pnpm install' # pnin: Install the project dependencies. + alias pnln='pnpm run lint' # pnln: Lint the project. + alias pnls='pnpm list' # pnls: List all dependencies. + alias pnout='pnpm outdated' # pnout: Check for outdated dependencies. + alias pnp='pnpm' # pnp: Shortcut to pnpm. + alias pnpub='pnpm publish' # pnpub: Publish the project. + alias pnrm='pnpm remove' # pnrm: Remove a dependency from the project. + alias pnrun='pnpm run' # pnrun: Run a script from the project. + alias pns='pnpm run serve' # pns: Run the project in serve mode. + alias pnst='pnpm start' # pnst: Start the project. + alias pnsv='pnpm server' # pnsv: Run the project in server mode. + alias pnt='pnpm test' # pnt: Test the project. + alias pntc='pnpm test --coverage' # pntc: Test the project with coverage. + alias pnui='pnpm update --interactive' # pnui: Update a dependency interactively. + alias pnuil='pnpm update --interactive --latest' # pnuil: Update a dependency interactively to the latest version. + alias pnun='pnpm uninstall' # pnun: Uninstall the project dependencies. + alias pnup='pnpm update' # pnup: Update a dependency. + alias pnwhy='pnpm why' # pnwhy: Check why a dependency is installed. + alias pnx='pnpx' # pnx: Shortcut to pnpx. fi diff --git a/lib/aliases/ps/ps.aliases.sh b/lib/aliases/ps/ps.aliases.sh new file mode 100644 index 00000000..4f931a29 --- /dev/null +++ b/lib/aliases/ps/ps.aliases.sh @@ -0,0 +1,12 @@ +#!/usr/bin/env bash +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.462) - https://dotfiles.io +# Made with β™₯ in London, UK by @sebastienrousseau +# Copyright (c) 2015-2022. All rights reserved +# License: MIT + +# πŸ…ΏπŸ†‚ πŸ…°πŸ…»πŸ…ΈπŸ…°πŸ†‚πŸ…΄πŸ†‚ - PS aliases +if command -v ps &>/dev/null; then + alias pid='ps -f' # pid: Display the uid, pid, parent pid, recent CPU usage, process start time, controlling tty, elapsed CPU usage, and the associated command. + alias ps='ps -ef' # ps: Display all processes. + alias psa='ps aux' # psa: List all processes. +fi diff --git a/lib/aliases/wget/wget.aliases.sh b/lib/aliases/wget/wget.aliases.sh index f43c20a3..41e8b20f 100644 --- a/lib/aliases/wget/wget.aliases.sh +++ b/lib/aliases/wget/wget.aliases.sh @@ -6,6 +6,8 @@ # πŸ††πŸ…ΆπŸ…΄πŸ†ƒ πŸ…°πŸ…»πŸ…ΈπŸ…°πŸ†‚πŸ…΄πŸ†‚ if command -v wget &>/dev/null; then - alias wget='wget -c' # wget: Continue a partially-downloaded file. - alias wg='wget' # wg: wget. + alias wg='wget' # wg: wget. + alias wgc='wg' # wgc: wget with continue. + alias wge='wg -e robots=off' # wge: wget with robots=off. + alias wget='wget -c' # wget: wget with continue. fi From e981a2565e732d3d89778ef35f8850b181c0e7e0 Mon Sep 17 00:00:00 2001 From: Sebastien Rousseau Date: Sun, 6 Nov 2022 23:57:04 +0000 Subject: [PATCH 09/13] fix(aliases): Update aliases --- lib/aliases/default/default.aliases.sh | 77 ++++++++------------------ lib/aliases/update/update.aliases.sh | 38 +++++++++++++ 2 files changed, 60 insertions(+), 55 deletions(-) create mode 100644 lib/aliases/update/update.aliases.sh diff --git a/lib/aliases/default/default.aliases.sh b/lib/aliases/default/default.aliases.sh index ac0378ec..013c0bc9 100644 --- a/lib/aliases/default/default.aliases.sh +++ b/lib/aliases/default/default.aliases.sh @@ -5,32 +5,30 @@ # License: MIT # πŸ…³πŸ…΄πŸ…΅πŸ…°πŸ†„πŸ…»πŸ†ƒ πŸ…°πŸ…»πŸ…ΈπŸ…°πŸ†‚πŸ…΄πŸ†‚ -alias ':q'='quit' # q: Shortcut for the `exit` command. -alias bye='quit' # q: Shortcut for the `exit` command. -alias ctf='echo $(ls -1 | wc -l)' # ctf: Count the number of files in the current directory. -alias curl='curl --compressed' # curl: Use compression when transferring data. -alias da='date "+%Y-%m-%d %A %T %Z"' # da: Display the current date and time. -alias h='history' # h: Lists all recently used commands. -alias halt="sudo /sbin/halt" # halt: Shutdown the system. -alias ifconfig='sudo ifconfig' # ifconfig: Append sudo to ifconfig (configure network interface parameters) command. -alias ipinfo='ipconfig getpacket en0' # ipInfo0: Get network interface parameters for en0. -alias moon='curl -s "wttr.in/?format=%m"' # moon: Get the moon phase. -alias nls='sudo lsof -i -P | grep LISTEN' # nls: Show only active network listeners. -alias now='date +"%T"' # now: Show the current time. -alias op='sudo lsof -i -P' # op: List of open ports. -alias p='pwd' # p: Shortcut for `pwd` which returns working directory name. -alias path='echo ${PATH//:/\\n}' # path: Display the $PATH variable on newlines. - -alias ping='ping -c 5' # ping: Limit Ping to 5 ECHO_REQUEST packets. -alias please='sudo -' # sudo: Execute a command as the superuser. -alias ports='netstat -tulan' # ports: List all listening ports. -alias poweroff="sudo /sbin/shutdown" # poweroff: Poweroff the system. - +alias ':q'='quit' # q: Shortcut for the `exit` command. +alias bye='quit' # bye: Shortcut for the `exit` command. +alias ctf='echo $(ls -1 | wc -l)' # ctf: Count the number of files in the current directory. +alias curl='curl --compressed' # curl: Use compression when transferring data. +alias da='date "+%Y-%m-%d %A %T %Z"' # da: Display the current date and time. +alias h='history' # h: Lists all recently used commands. +alias halt="sudo /sbin/halt" # halt: Shutdown the system. +alias ifconfig='sudo ifconfig' # ifconfig: Append sudo to ifconfig (configure network interface parameters) command. +alias ipinfo='ipconfig getpacket en0' # ipinfo: Get network interface parameters for en0. +alias moon='curl -s "wttr.in/?format=%m"' # moon: Get the moon phase. +alias nls='sudo lsof -i -P | grep LISTEN' # nls: Show only active network listeners. +alias now='date +"%T"' # now: Show the current time. +alias op='sudo lsof -i -P' # op: List of open ports. +alias p='pwd' # p: Shortcut for `pwd` which returns working directory name. +alias path='echo ${PATH//:/\\n}' # path: Display the $PATH variable on newlines. +alias ping='ping -c 5' # ping: Limit Ping to 5 ECHO_REQUEST packets. +alias please='sudo -' # please: Execute a command as the superuser. +alias ports='netstat -tulan' # ports: List all listening ports. +alias poweroff="sudo /sbin/shutdown" # poweroff: Poweroff the system. alias q='quit' # q: Shortcut for the `exit` command. alias qfind='find . -name ' # qfind: Quickly search for file. -alias quit='exit' # q: Shortcut for the `exit` command. -alias r=reload # r: Reload the shell. -alias reboot="sudo /sbin/reboot" # reboot: Reboot the system. +alias quit='exit' # quit: Shortcut for the `exit` command. +alias r='reload' # r: Reload the shell. +alias reboot='sudo /sbin/reboot' # reboot: Reboot the system. alias reload='exec $SHELL -l' # reload: Reload the shell. alias shutdown='sudo shutdown -h now' # shutdown: Shutdown the system. alias spd='sudo rm -rf /private/var/log/asl/*' # spd: Remove all log files in /private/var/log/asl. @@ -41,34 +39,3 @@ alias tree='tree --dirsfirst' # tree: Display a directory tree. alias wk='date +%V' # wk: Show the current week number. alias wth='curl -s "wttr.in/?format=3"' # wth: Get the weather. alias x='quit' # q: Shortcut for the `exit` command. -if [[ "$(uname || true)" = "Darwin" ]]; then - alias upd=' - sudo softwareupdate -i -a; - pnpm up; - rustup update stable; - if [[ "$(command -v brew cu)" ]]; then - brew cu -ayi; - else - brew tap buo/cask-upgrade; - fi; - brew doctor; - brew update; - brew upgrade; - brew cleanup; - mas upgrade; - sudo gem update; - sudo gem cleanup; - ' -elif [[ "$(uname || true)" = "Linux" ]]; then - alias open="xdg-open >/dev/null 2>&1" # open: Open a file or URL in the user's preferred application. - alias pbcopy='xsel --clipboard --input' # pbcopy: Copy to clipboard. - alias pbpaste='xsel --clipboard --output' # pbpaste: Paste from clipboard. - alias upd=' - sudo apt update; - sudo apt upgrade -y; - pnpm up; - rustup update stable; - sudo gem update; - sudo gem cleanup; - ' -fi diff --git a/lib/aliases/update/update.aliases.sh b/lib/aliases/update/update.aliases.sh new file mode 100644 index 00000000..7bbb0af2 --- /dev/null +++ b/lib/aliases/update/update.aliases.sh @@ -0,0 +1,38 @@ +#!/usr/bin/env bash +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.462) - https://dotfiles.io +# Made with β™₯ in London, UK by @sebastienrousseau +# Copyright (c) 2015-2022. All rights reserved +# License: MIT + +# πŸ†„πŸ…ΏπŸ…³πŸ…°πŸ†ƒπŸ…΄ πŸ…°πŸ…»πŸ…ΈπŸ…°πŸ†‚πŸ…΄πŸ†‚ +if [[ "$(uname || true)" = "Darwin" ]]; then + alias upd=' + sudo softwareupdate -i -a; + pnpm up; + rustup update stable; + if [[ "$(command -v brew cu)" ]]; then + brew cu -ayi; + else + brew tap buo/cask-upgrade; + fi; + brew doctor; + brew update; + brew upgrade; + brew cleanup; + mas upgrade; + sudo gem update; + sudo gem cleanup; + ' +elif [[ "$(uname || true)" = "Linux" ]]; then + alias open="xdg-open >/dev/null 2>&1" # open: Open a file or URL in the user's preferred application. + alias pbcopy='xsel --clipboard --input' # pbcopy: Copy to clipboard. + alias pbpaste='xsel --clipboard --output' # pbpaste: Paste from clipboard. + alias upd=' + sudo apt update; + sudo apt upgrade -y; + pnpm up; + rustup update stable; + sudo gem update; + sudo gem cleanup; + ' +fi From 79c03001bfe8d7f14e04cbd88e8a740bf4bf1e39 Mon Sep 17 00:00:00 2001 From: Sebastien Rousseau Date: Mon, 7 Nov 2022 15:03:49 +0000 Subject: [PATCH 10/13] fix(download): updated call where expression is not callable --- bin/dotfiles.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/dotfiles.js b/bin/dotfiles.js index 1ab2a150..8cd4f3a8 100644 --- a/bin/dotfiles.js +++ b/bin/dotfiles.js @@ -31,7 +31,7 @@ module.exports = async function main() { } while (i < aliases.length && i < copies.length); // Download and unpack dotfiles. - download(); // download the dotfiles + download; // download the dotfiles await sleep(2500); // wait for download to complete unpack(); // unpack the downloaded file await sleep(2500); // wait for unpack to complete From 893617c61d16bfc92c91f0af5ab6c6bd408e6061 Mon Sep 17 00:00:00 2001 From: Sebastien Rousseau Date: Mon, 7 Nov 2022 15:05:03 +0000 Subject: [PATCH 11/13] fix(coreutils): removed prefix not required --- lib/aliases/gnu/gnucoreutls-aliases.sh | 208 ++++++++++++------------- 1 file changed, 104 insertions(+), 104 deletions(-) diff --git a/lib/aliases/gnu/gnucoreutls-aliases.sh b/lib/aliases/gnu/gnucoreutls-aliases.sh index 48a97beb..ccba4c90 100644 --- a/lib/aliases/gnu/gnucoreutls-aliases.sh +++ b/lib/aliases/gnu/gnucoreutls-aliases.sh @@ -5,107 +5,107 @@ # License: MIT # πŸ…ΆπŸ…½πŸ†„ πŸ…²πŸ…ΎπŸ†πŸ…΄πŸ†„πŸ†ƒπŸ…ΈπŸ…»πŸ†‚ πŸ…°πŸ…»πŸ…ΈπŸ…°πŸ†‚πŸ…΄πŸ†‚ -alias awk=gawk -alias b2sum=gb2sum -alias base32=gbase32 -alias base64=gbase64 -alias basename=gbasename -alias basenc=gbasenc -alias cat=gcat -alias chcon=gchcon -alias chown=gchown -alias chroot=gchroot -alias cksum=gcksum -alias comm=gcomm -alias cp=gcp -alias csplit=gcsplit -alias cut=gcut -alias date=gdate -alias dd=gdd -alias df=gdf -alias dir=gdir -alias dircolors=gdircolors -alias dirname=gdirname -alias diff=gdiff -alias du=gdu -alias echo=gecho -alias env=genv -alias expand=gexpand -alias expr=gexpr -alias factor=gfactor -alias false=gfalse -alias fmt=gfmt -alias fold=gfold -alias head=ghead -alias hostid=ghostid -alias id=gid -alias install=ginstall -alias join=gjoin -alias link=glink -alias ln=gln -alias logname=glogname -alias ls=gls -alias make=gmake -alias md5sum=gmd5sum -alias mkdir=gmkdir -alias mkfifo=gmkfifo -alias mknod=gmknod -alias mktemp=gmktemp -alias mv=gmv -alias nice=gnice -alias nl=gnl -alias nohup=gnohup -alias nproc=gnproc -alias numfmt=gnumfmt -alias od=god -alias paste=gpaste -alias patch=gpatch -alias pathchk=gpathchk -alias pinky=gpinky -alias pr=gpr -alias printenv=gprintenv -alias printf=gprintf -alias ptx=gptx -alias pwd=gpwd -alias readlink=greadlink -alias realpath=grealpath -alias rm=grm -alias rmdir=grmdir -alias runcon=gruncon -alias seq=gseq -alias sha1sum=gsha1sum -alias sha224sum=gsha224sum -alias sha256sum=gsha256sum -alias sha384sum=gsha384sum -alias sha512sum=gsha512sum -alias shred=gshred -alias shuf=gshuf -alias sleep=gsleep -alias sort=gsort -alias split=gsplit -alias stat=gstat -alias stdbuf=gstdbuf -alias stty=gstty -alias sum=gsum -alias sync=gsync -alias tac=gtac -alias tail=gtail -alias tar=gnutar -alias tee=gtee -alias test=gtest -alias timeout=gtimeout -alias touch=gtouch -alias tr=gtr -alias true=gtrue -alias truncate=gtruncate -alias tsort=gtsort -alias tty=gtty -alias unexpand=gunexpand -alias uniq=guniq -alias unlink=gunlink -alias users=gusers -alias vdir=gvdir -alias wc=gwc -alias who=gwho -alias whoami=gwhoami -alias yes=gyes +alias awk=awk +alias b2sum=b2sum +alias base32=base32 +alias base64=base64 +alias basename=basename +alias basenc=basenc +alias cat=cat +alias chcon=chcon +alias chown=chown +alias chroot=chroot +alias cksum=cksum +alias comm=comm +alias cp=cp +alias csplit=csplit +alias cut=cut +alias date=date +alias dd=dd +alias df=df +alias dir=dir +alias dircolors=dircolors +alias dirname=dirname +alias diff=diff +alias du=du +alias echo=echo +alias env=env +alias expand=expand +alias expr=expr +alias factor=factor +alias false=false +alias fmt=fmt +alias fold=fold +alias head=head +alias hostid=hostid +alias id=id +alias install=install +alias join=join +alias link=link +alias ln=ln +alias loname=loname +alias ls=ls +alias make=make +alias md5sum=md5sum +alias mkdir=mkdir +alias mkfifo=mkfifo +alias mknod=mknod +alias mktemp=mktemp +alias mv=mv +alias nice=nice +alias nl=nl +alias nohup=nohup +alias nproc=nproc +alias numfmt=numfmt +alias od=od +alias paste=paste +alias patch=patch +alias pathchk=pathchk +alias pinky=pinky +alias pr=pr +alias printenv=printenv +alias printf=printf +alias ptx=ptx +alias pwd=pwd +alias readlink=readlink +alias realpath=realpath +alias rm=rm +alias rmdir=rmdir +alias runcon=runcon +alias seq=seq +alias sha1sum=sha1sum +alias sha224sum=sha224sum +alias sha256sum=sha256sum +alias sha384sum=sha384sum +alias sha512sum=sha512sum +alias shred=shred +alias shuf=shuf +alias sleep=sleep +alias sort=sort +alias split=split +alias stat=stat +alias stdbuf=stdbuf +alias stty=stty +alias sum=sum +alias sync=sync +alias tac=tac +alias tail=tail +alias tar=nutar +alias tee=tee +alias test=test +alias timeout=timeout +alias touch=touch +alias tr=tr +alias true=true +alias truncate=truncate +alias tsort=tsort +alias tty=tty +alias unexpand=unexpand +alias uniq=uniq +alias unlink=unlink +alias users=users +alias vdir=vdir +alias wc=wc +alias who=who +alias whoami=whoami +alias yes=yes From c596bff353b72db6342e14c0371ff820642999bd Mon Sep 17 00:00:00 2001 From: Sebastien Rousseau Date: Mon, 7 Nov 2022 15:12:33 +0000 Subject: [PATCH 12/13] fix(readme):Expected: 80; Actual: 143 --- assets/README.md | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/assets/README.md b/assets/README.md index 269a8d28..783f0761 100644 --- a/assets/README.md +++ b/assets/README.md @@ -2,14 +2,17 @@ ![Banner representing the Dotfiles Library](/assets/dotfiles.svg) -This directory contains the following files and directories that are used by the dotfiles: +This directory contains the following files and directories that are used by the +dotfiles: - `dotfiles.svg` - the dotfiles logo file. - `made-with-love.svg` - made with love.svg file. ## License -The dotfiles logo is licensed under the [Creative Commons Attribution 4.0 International License](https://creativecommons.org/licenses/by/4.0/). +- The dotfiles logo is licensed under the +[Creative Commons Attribution 4.0 International License][license]. +- The made with love.svg file is licensed under the +[Creative Commons Attribution 4.0 International License][license]. -The made with love.svg file is licensed under the [Creative Commons Attribution -4.0 International License](https://creativecommons.org/licenses/by/4.0/). +[license]: https://creativecommons.org/licenses/by/4.0/ From 1f17d299d1395e1450ccb4b8520da5c22556ca7f Mon Sep 17 00:00:00 2001 From: Sebastien Rousseau Date: Mon, 7 Nov 2022 15:13:18 +0000 Subject: [PATCH 13/13] fix(security): Expected: 80; Actual: 143 --- .github/SECURITY.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/SECURITY.md b/.github/SECURITY.md index 4a92266c..23716827 100644 --- a/.github/SECURITY.md +++ b/.github/SECURITY.md @@ -2,9 +2,11 @@ [![Banner representing the Dotfiles Library][logo]][website] -We take the security of our software products and services seriously, which includes all source code repositories managed through our GitHub repositories. +We take the security of our software products and services seriously, which +includes all source code repositories managed through our GitHub repositories. -If you believe you have found a security vulnerability in any of our repository, please report it to us as described below. +If you believe you have found a security vulnerability in any of our repository, +please report it to us as described below. ## Reporting Security Issues