11 lines
204 B
Bash
Executable File
11 lines
204 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
bash_source="$dotfiles_dir/bash"
|
|
bash_target="$HOME"
|
|
link_folder "$bash_source" "$bash_target"
|
|
echo "bash dotfiles are linked"
|
|
|
|
sudo chmod -R 0644 /etc/update-motd.d/
|
|
|
|
bash --version
|