mirror of
https://gitea.blesmrt.net/mikaela/shell-things.git
synced 2024-11-13 03:49:22 +01:00
5440d29980
This script is hidden, because it shouldn't be used unless the user is fully sure about what he/she is doing, because it can cause data loss by overwriting all bashrc, zshrc and tmux.conf.
6 lines
154 B
Bash
6 lines
154 B
Bash
#!/usr/bin/env bash
|
|
# Do not use this script unless you know what you are doing!
|
|
cat bashrc > ~/.bashrc
|
|
cat tmux.conf > ~/.tmux.conf
|
|
cat zshrc > ~/.zshrc
|