mirror of
https://github.com/tiennm99/fbird.git
synced 2026-06-12 12:10:53 +00:00
12 lines
168 B
Bash
Executable File
12 lines
168 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ -f $HOME/.bashrc ]; then
|
|
source $HOME/.bashrc
|
|
fi
|
|
|
|
if [ -f $HOME/.bash_profile ]; then
|
|
source $HOME/.bash_profile
|
|
fi
|
|
|
|
echo $COCOS_CONSOLE_ROOT
|