rename home to nixhome

This commit is contained in:
luk.lu
2021-11-05 09:47:57 +08:00
parent dd81d8a6e7
commit 813df737fd
11 changed files with 13 additions and 13 deletions

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