6 lines
135 B
Bash
Executable file
6 lines
135 B
Bash
Executable file
#!/bin/bash
|
|
cd $HOME/.oh-my-zsh/runcoms/
|
|
for rcfile in z{shenv,shrc,login,logout}; do
|
|
cp -f $rcfile ~/.$rcfile
|
|
cat ~/.$rcfile
|
|
done
|