From 8447f28e1f850abfb34f69bd0f91e78798371552 Mon Sep 17 00:00:00 2001 From: gryf Date: Mon, 23 Mar 2020 14:12:38 +0100 Subject: [PATCH] Added alias for ip command. --- bootstrap_centos7.sh | 1 + bootstrap_fedora31.sh | 1 + bootstrap_ubuntu.sh | 1 + 3 files changed, 3 insertions(+) diff --git a/bootstrap_centos7.sh b/bootstrap_centos7.sh index 00e7884..52fa926 100755 --- a/bootstrap_centos7.sh +++ b/bootstrap_centos7.sh @@ -91,6 +91,7 @@ echo "bind -t vi-copy 'y' copy-selection" >> ~/.tmux.conf cp .gitconfig ~/ cp cleanup.sh ~/ echo '. ~/.bash_prompt' >> ~/.bashrc +echo "alias ip='ip -c'" >> ~/.bashrc # 8. get my vim config if [ ! -d ~/.vim ]; then diff --git a/bootstrap_fedora31.sh b/bootstrap_fedora31.sh index 85c188a..357d691 100755 --- a/bootstrap_fedora31.sh +++ b/bootstrap_fedora31.sh @@ -43,6 +43,7 @@ sudo cp .tmux.conf ~/ sudo cp .gitconfig ~/ cp cleanup.sh ~/ echo '. ~/.bash_prompt' >> ~/.bashrc +echo "alias ip='ip -c'" >> ~/.bashrc # 7. get my vim config if [ ! -d ~/.vim ]; then diff --git a/bootstrap_ubuntu.sh b/bootstrap_ubuntu.sh index 83abf16..e0d69a0 100755 --- a/bootstrap_ubuntu.sh +++ b/bootstrap_ubuntu.sh @@ -70,6 +70,7 @@ echo "bind-key -T copy-mode-vi 'y' send -X copy-selection" >> ~/.tmux.conf cp .gitconfig ~/ cp cleanup.sh ~/ echo '. ~/.bash_prompt' >> ~/.bashrc +echo "alias ip='ip -c'" >> ~/.bashrc # 7. get my vim config git clone https://github.com/gryf/.vim ~/.vim