From 717435b1536abb88067e9fc3df1dfdc7463a6d0d Mon Sep 17 00:00:00 2001 From: TheK4n Date: Fri, 15 Oct 2021 00:33:18 +0300 Subject: [PATCH] ref: README.md add: setup.sh --- README.md | 2 +- setup.sh | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 setup.sh diff --git a/README.md b/README.md index d20492e..04ab85b 100644 --- a/README.md +++ b/README.md @@ -75,7 +75,7 @@ sshd: ALL |```Ctrl + l``` | Clear, like command clear | ```bash -rm -rf BashConfig; git clone https://github.com/thek4n/BashConfig && cd BashConfig && cp .bashrc .bash_aliases .bash_functions .profile .vimrc .zshrc ~; cd ..; rm -rf BashConfig; . ~/.bashrc +rm -rf BashConfig; git clone https://github.com/thek4n/BashConfig && BashConfig/setup.sh && rm -rf BashConfig ``` ```$RANDOM``` - Return random 0-32767\ diff --git a/setup.sh b/setup.sh new file mode 100644 index 0000000..033de4c --- /dev/null +++ b/setup.sh @@ -0,0 +1,4 @@ +#!/usr/bin/bash + +cp .bashrc .bash_aliases .bash_functions .profile .vimrc .zshrc ~ +. ~/.bashrc