From 44b7c454c7e247a8351e34a265916a56a1469a79 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=BE=B9=E5=B9=BF=E6=B3=BD?= Date: Wed, 3 Dec 2025 17:29:16 +0800 Subject: [PATCH] remove unused file --- dot-utshell_profile | 8 -------- dot-utshellrc | 29 ----------------------------- 2 files changed, 37 deletions(-) delete mode 100644 dot-utshell_profile delete mode 100644 dot-utshellrc diff --git a/dot-utshell_profile b/dot-utshell_profile deleted file mode 100644 index 4fdc9ef2..00000000 --- a/dot-utshell_profile +++ /dev/null @@ -1,8 +0,0 @@ -# .utshell_profile - -# Get the aliases and functions -if [ -f ~/.bashrc ]; then - . ~/.bashrc -fi - -# User specific environment and startup programs diff --git a/dot-utshellrc b/dot-utshellrc deleted file mode 100644 index 3d865b0b..00000000 --- a/dot-utshellrc +++ /dev/null @@ -1,29 +0,0 @@ -# .utshellrc - -export HISTFILE=~/.utshell_history - -# Source global definitions -if [ -f /etc/bashrc ]; then - . /etc/bashrc -fi - -# User specific environment -if ! [[ "$PATH" =~ "$HOME/.local/bin:$HOME/bin:" ]] -then - PATH="$HOME/.local/bin:$HOME/bin:$PATH" -fi -export PATH - -# Uncomment the following line if you don't like systemctl's auto-paging feature: -# export SYSTEMD_PAGER= - -# User specific aliases and functions -if [ -d ~/.bashrc.d ]; then - for rc in ~/.bashrc.d/*; do - if [ -f "$rc" ]; then - . "$rc" - fi - done -fi - -unset rc -- Gitee