init repo

This commit is contained in:
Luk Lu
2019-09-24 00:53:50 +08:00
commit bb872d5e9e
8 changed files with 5196 additions and 0 deletions

21
.bash_profile Normal file
View File

@@ -0,0 +1,21 @@
################################################################################
# File: "~/.bash_profile"
# Intro: Personal login script for BASH.
# Author: Leiqin Lu
# See also: personal logout script for BASH, "~/.bash_logout";
# system login script for BASH, "/etc/profile";
# personal startup script for BASH, "~/.bashrc";
# system startup script for BASH, "/etc/bashrc".
################################################################################
# Execute personal startup script for BASH
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
# User specific environment and startup programs
unset USERNAME
################################################################################
# End Of File: "~/.bash_profile"
################################################################################