mirror of
https://github.com/ellysh/bash-programming-from-scratch.git
synced 2026-01-26 07:43:42 +00:00
20 lines
197 B
Bash
20 lines
197 B
Bash
#!/bin/bash
|
|
|
|
file="$1"
|
|
|
|
rm ~/.bashrc
|
|
|
|
case "$file" in
|
|
"h")
|
|
ln -s ~/.bashrc-home ~/.bashrc
|
|
;;
|
|
|
|
"w")
|
|
ln -s ~/.bashrc-work ~/.bashrc
|
|
;;
|
|
|
|
*)
|
|
echo "Invalid option"
|
|
;;
|
|
esac
|