把 .* 文件迁移到 sysconfig/home 目录下

This commit is contained in:
Luk Lu
2020-07-01 08:52:54 +08:00
parent 53bd6bbb48
commit d80e7a7bee
9 changed files with 5 additions and 4 deletions

21
home/.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"
################################################################################