-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix/zsh compatability for tools (#26)
* fix: account for zsh and enable addition of other shells
- Loading branch information
1 parent
4f895d2
commit 2056242
Showing
3 changed files
with
19 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#!/bin/bash | ||
|
||
tools_file="/etc/tools.sh" | ||
|
||
add_tools_to_shell() { | ||
local rc_file="$1" | ||
if [ -f "$rc_file" ]; then | ||
echo "source $tools_file" >> "$rc_file" | ||
fi | ||
} | ||
|
||
# bash | ||
add_tools_to_shell "$HOME/.bashrc" | ||
|
||
# zsh | ||
add_tools_to_shell "$HOME/.zshrc" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters