LinuxShell编程中source和export命令

目录

  • 1.source命令
    • 1.1.POSIX模式
      • 1.1.1.验证POSIX模式执行情况
    • 1.2.source命令表示形式的历史由来
    • 1.3.source命令解读
      • 1.3.1.在当前的shell环境中
      • 1.3.2.source命令的常用用途
      • 1.3.3.从文件名中读取并执行命令
  • 2.export命令
    • 2.1.显示当前终端已经导出的函数和环境变量
    • 2.2.验证变量和函数导出功能
  • 3.source命令和export命令的结合
  • 4.在profile,.bashrc等脚本中变量是否需要明确导出
  • 5.结论

1.source命令

source命令是shell的内部命令,和. 命令相同.

注意这里的.+空格+文件名[参数],需要和./file.sh不同.

source命令格式:

source 文件名 [参数]

在当前的shell环境中, 从文件名中读取并执行命令.

如果文件名不包括斜杠,则使用 PATH 变量去搜索文件. 如果Bash不是在POSIX模式下运行, 则在$PATH中找不到后就会在当前目录中搜索.

如果提供了参数, 它们就成为执行文件名时的位置参数; 否则, 位置参数不会被改变.

返回状态是最后一个被执行命令的退出状态; 如果没有命令被执行,则返回零. 如果文件名没有找到, 或者不能读取, 返回状态就是非零值.

1.1.POSIX模式

#脚本第一行如下所示是执行在POSIX模式下
#!/bin/sh
#POSIX模式是符合POSIX规范的运行模式
#POSIX模式也可以如下指定,在脚本第一行
#!/bin/bash --posix
#脚本第一行如下所示是执行在非POSIX模式下,也可以认为是扩展模式,是POSIX的增强模式
#!/bin/bash

1.1.1.验证POSIX模式执行情况

准备文件夹如下:

└── posix_mode_test├── local_cmd.sh├── no_posix.sh└── posix.sh

local_cmd.sh是测试脚本命令,内容如下:

#!/bin/sh
echo "test echo"

posix.sh是测试posix模式下source命令的测试脚本

#!/bin/sh
#posix模式,文件名不包括斜杠,则使用PATH变量搜索文件,
#没有搜索到,发生错误,在posix模式中就会直接退出,不再执行接下来的命令source local_cmd.shecho "return value=$#"

运行结果:

./posix.sh 
./posix.sh: line 5: source: local_cmd.sh: file not found

可以看到运行到第5行发生错误就退出了.

no_posix.sh是非posix模式下source命令的测试脚本

#!/bin/bash
#非posix模式,文件名不包括斜杠,则使用PATH变量搜索文件,没有搜索到,
#就在当前目录中搜索,在当前目录中可以搜索到local_cmd.sh文件,执行文件,显示返回值并退出source local_cmd.shecho "return value=$#"

运行结果:

./no_posix.sh 
test echo
return value=0

可以看到运行结果和预期一样.

其他情况验证:

#1.第一行如下语句,也是posix模式
#!/bin/bash --posix#2.第一行没有指定"#!/bin/sh"或"#!/bin/bash",默认情况下是非posix模式

1.2.source命令表示形式的历史由来

source filename表示形式来自Cshell;

. filename表示形式来自Bourne Shell.

为了兼容用户的习惯,使用了两种表示形式.

1.3.source命令解读

在当前的shell环境中, 从文件名中读取并执行命令.

这句话很重要,包含有几层意思,接下来一一解读.

1.3.1.在当前的shell环境中

要想理解这个条件,先必须了解几种常用的shell脚本执行方式:

1.工作目录执行

先进入到脚本所在的目录(此时, 称为工作目录), 然后使用 ./脚本方式执行.

脚本需要具有执行权限才可以.

2.绝对路径执行

/home/shell/source_cmd/posix_mode_test/local_cmd.sh

也需要脚本具有可执行权限.

3.使用sh或bash命令执行

sh local_cmd.sh
#或者
bash local_cmd.sh

脚本只需要具有读权限即可,sh或bash把脚本当作参数,读取脚本内容并执行.

4.shell环境执行

也就是这里所说的**“在当前的shell环境中”**

source local_cmd.sh

上述4种shell脚本执行方式可以归为两类:

一, 1-3执行内部原理一样,会新建一个子shell,在子shell中执行脚本里面的语句,该子shell继承父shell的环境变量,但子shell新建的,改变的变量不会被带回父shell.

二,4为另一类,source命令其实只是简单地读取脚本里面的语句依次在当前shell里面执行, 没有建立新的子shell. 那么脚本里面所有新建,改变变量的语句都会保存在当前shell里面.

验证这两类情况.

#文件目录结构
verify_shell_run/
├── child_run_test.sh
└── source_run_test.sh

child_run_test.sh 内容

#!/bin/bashCHILD_VAR=child_context
echo "child test run!"

source_run_test.sh 内容

#!/bin/bashPARENT_VAR=parent_context
echo "source test run!"

验证情况:

#运行第一类情况
sh child_run_test.sh
child test run!
#打印变量值
echo $CHILD_VAR
#显示内容为空#运行第二类情况
source source_run_test.sh 
source test run!
#打印变量值
echo $PARENT_VAR
parent_context
#变量在当前shell中有效

验证结果符合预期.

1.3.2.source命令的常用用途

根据上一点分析:source命令一般的用途是,打开一个shell终端,在shell终端中执行source脚本,可以设置环境变量和函数,这些环境变量和

函数就会在当前shell终端中一直存在,建立shell终端的环境,方便工作.

Linux登录过程使用source命令建立用户环境,以下简略描述一下过程:

1.每个终端登录时,先执行/etc/profile脚本

 # /etc/profile: system-wide .profile file for the Bourne shell (sh(1))# and Bourne compatible shells (bash(1), ksh(1), ash(1), ...).if [ "${PS1-}" ]; thenif [ "${BASH-}" ] && [ "$BASH" != "/bin/sh" ]; then# The file bash.bashrc already sets the default PS1.# PS1='\h:\w\$ 'if [ -f /etc/bash.bashrc ]; then#根据情况执行系统脚本. /etc/bash.bashrcfi  elseif [ "$(id -u)" -eq 0 ]; thenPS1='# 'elsePS1='$ 'fi  fi  fi#根据情况执行系统脚本if [ -d /etc/profile.d ]; thenfor i in /etc/profile.d/*.sh; doif [ -r $i ]; then. $ifi  doneunset ifi#用户可以在这里制定环境变量export PATH="/opt/cmake-3.27.8-linux-x86_64/bin:$PATH"export PATH="/opt/node-v20.11.0-linux-x64/bin:$PATH"

2.执行用户目录下的.profile脚本

 # ~/.profile: executed by the command interpreter for login shells.# This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login# exists.# see /usr/share/doc/bash/examples/startup-files for examples.# the files are located in the bash-doc package.# the default umask is set in /etc/profile; for setting the umask# for ssh logins, install and configure the libpam-umask package.#umask 022# if running bashif [ -n "$BASH_VERSION" ]; then# include .bashrc if it existsif [ -f "$HOME/.bashrc" ]; then#执行用户目录下的.bashrc脚本. "$HOME/.bashrc"fi  fi# set PATH so it includes user's private bin if it existsif [ -d "$HOME/bin" ] ; thenPATH="$HOME/bin:$PATH"fi# set PATH so it includes user's private bin if it existsif [ -d "$HOME/.local/bin" ] ; thenPATH="$HOME/.local/bin:$PATH"fi#用户自定义设置环境变量和函数source $HOME/setenv_qt.sh

3…执行用户目录下的.bashrc脚本

在用户目录下的.profile脚本的第16行调用用户目录下的.bashrc脚本,如上所示.

# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples# If not running interactively, don't do anything
case $- in*i*) ;;*) return;;
esac# don't put duplicate lines or lines starting with space in the history.
# See bash(1) for more options
HISTCONTROL=ignoreboth# append to the history file, don't overwrite it
shopt -s histappend# for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
HISTSIZE=1000
HISTFILESIZE=2000# check the window size after each command and, if necessary,
# update the values of LINES and COLUMNS.
shopt -s checkwinsize# If set, the pattern "**" used in a pathname expansion context will
# match all files and zero or more directories and subdirectories.
#shopt -s globstar# make less more friendly for non-text input files, see lesspipe(1)
[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"# set variable identifying the chroot you work in (used in the prompt below)
if [ -z "${debian_chroot:-}" ] && [ -r /etc/debian_chroot ]; thendebian_chroot=$(cat /etc/debian_chroot)
fi# set a fancy prompt (non-color, unless we know we "want" color)
case "$TERM" inxterm-color|*-256color) color_prompt=yes;;
esac# uncomment for a colored prompt, if the terminal has the capability; turned
# off by default to not distract the user: the focus in a terminal window
# should be on the output of commands, not on the prompt
#force_color_prompt=yesif [ -n "$force_color_prompt" ]; thenif [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then# We have color support; assume it's compliant with Ecma-48# (ISO/IEC-6429). (Lack of such support is extremely rare, and such# a case would tend to support setf rather than setaf.)color_prompt=yeselsecolor_prompt=fi
fi
if [ "$color_prompt" = yes ]; thenPS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
elsePS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
fi
unset color_prompt force_color_prompt# If this is an xterm set the title to user@host:dir
case "$TERM" in
xterm*|rxvt*)PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1";;
*);;
esac# enable color support of ls and also add handy aliases
if [ -x /usr/bin/dircolors ]; thentest -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"alias ls='ls --color=auto'#alias dir='dir --color=auto'#alias vdir='vdir --color=auto'alias grep='grep --color=auto'alias fgrep='fgrep --color=auto'alias egrep='egrep --color=auto'
fi# colored GCC warnings and errors
#export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'# some more ls aliases
alias ll='ls -alF'
alias la='ls -A'
alias l='ls -CF'# Add an "alert" alias for long running commands.  Use like so:
#   sleep 10; alert
alias alert='notify-send --urgency=low -i "$([ $? = 0 ] && echo terminal || echo error)" "$(history|tail -n1|sed -e '\''s/^\s*[0-9]\+\s*//;s/[;&|]\s*alert$//'\'')"'# Alias definitions.
# You may want to put all your additions into a separate file like
# ~/.bash_aliases, instead of adding them here directly.
# See /usr/share/doc/bash-doc/examples in the bash-doc packageif [ -f ~/.bash_aliases ]; then. ~/.bash_aliases
fi# enable programmable completion features (you don't need to enable
# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
# sources /etc/bash.bashrc).
if ! shopt -oq posix; thenif [ -f /usr/share/bash-completion/bash_completion ]; then. /usr/share/bash-completion/bash_completionelif [ -f /etc/bash_completion ]; then. /etc/bash_completionfi
fi
#用户可以定制
PATH=$HOME/.local/bin:$PATH

/etc/profile,~/.profile,~/.bashrc脚本在用户登录时都会自动执行,并且设置的环境变量和函数都会在登录后保存在终端里.

如果用户修改了这三个脚本,可以不重启,不退出,使用source命令立即生效.

source /etc/profile
source ~/.profile
source ~/.bashrc

1.3.3.从文件名中读取并执行命令

从文件名中读取并执行命令,可以理解为source后面接的文件名对应的文件可以不是脚本,只要是可读权限的文本文件即可.

例如,建立如下文件,只给文件可读权限

touch readme.txtvim readme.txtTEST_VAR_123=hello_worldecho "test source command!"chmod a=r readme.txt
ll
-r--r--r-- 1 lei lei   53  412 22:01 readme.txtsource readme.txt 
test source command!echo $TEST_VAR_123
hello_world

2.export命令

调用格式

 export [-fn][-p][名称[=]]

把每个名称都传到子进程的环境中.

如果给定了"-f"选项(助记词:Function函数),则名称就是shell函数;否则,它就是shell变量.

"-n"选项(助记词:No不)表示不再把名称导出到子进程.

如果没有给定名称,或者给定了"-p"选项(助记词:Pretty-Print格式化打印),则显示已经导出的名称列表.

"-p"选项能够把输出格式化成可以重新作为输入的形式.

如果名称后面是"=值"的形式,那么这个值就会赋给名称.

这个命令的返回状态是零,除非指定了无效的选项,或者其中一个名称不是有效的shell变量名,或者"-f"指定的不是一个shell函数的名称.

2.1.显示当前终端已经导出的函数和环境变量

export... ...
declare -x LANG="en_US.UTF-8"
declare -x LC_ADDRESS="zh_CN.UTF-8"
declare -x LC_IDENTIFICATION="zh_CN.UTF-8"
declare -x LC_MEASUREMENT="zh_CN.UTF-8"
declare -x LC_MONETARY="zh_CN.UTF-8"
declare -x LC_NAME="zh_CN.UTF-8"
declare -x LC_NUMERIC="zh_CN.UTF-8"
declare -x LC_PAPER="zh_CN.UTF-8"
declare -x LC_TELEPHONE="zh_CN.UTF-8"
... ...

2.2.验证变量和函数导出功能

export_test/
├── child_shell.sh
└── paren_shell.sh

paren_shell.sh

#!/bin/bash
PARENT_EXPORT_TEST_VAR=parent_export_value
export PARENT_EXPORT_TEST_VAR
PARENT_NOEXPORT_TEST_VAR=parent_noexport_value
function testFunc()
{echo "testFunc run!"
}
export -f testFunc
sh child_shell.shexport -n PARENT_EXPORT_TEST_VAR
export -nf testFunc
sh child_shell.sh

child_shell.sh

#!/bin/bashecho "PARENT_EXPORT_TEST_VAR=$PARENT_EXPORT_TEST_VAR"
echo "PARENT_NOEXPORT_TEST_VAR=$PARENT_NOEXPORT_TEST_VAR"
testFunc

运行结果:

sh paren_shell.shPARENT_EXPORT_TEST_VAR=parent_export_value
PARENT_NOEXPORT_TEST_VAR=
testFunc run!
PARENT_EXPORT_TEST_VAR=
PARENT_NOEXPORT_TEST_VAR=
child_shell.sh: line 5: testFunc: command not found

可以看到导出的变量在子shell中有值,没有导出的变量在子shell中没有值,导出的函数在子shell中可以运行.

在第二次调用子shell之前取消导出,结果变量都为空,函数没有定义.

3.source命令和export命令的结合

准备两个脚本source_parent_shell.shpri_child_shell.sh

source_parent_shell.sh

#!/bin/bash
SOURCE_PARENT_EXPORT_TEST_VAR=source_parent_export_value
export SOURCE_PARENT_EXPORT_TEST_VAR
SOURCE_PARENT_NOEXPORT_TEST_VAR=source_parent_noexport_value

pri_child_shell.sh

#!/bin/bashecho "SOURCE_PARENT_EXPORT_TEST_VAR=$SOURCE_PARENT_EXPORT_TEST_VAR"
echo "SOURCE_PARENT_NOEXPORT_TEST_VAR=$SOURCE_PARENT_NOEXPORT_TEST_VAR"

source方式运行source_parent_shell.sh

source ./source_parent_shell.sh

在当前shell中查看变

echo $SOURCE_PARENT_EXPORT_TEST_VAR
source_parent_export_value
echo $SOURCE_PARENT_NOEXPORT_TEST_VAR 
source_parent_noexport_value#可以看到两个变量在当前shell中都有效

使用export查看当前shell中导出的变量

export... ...
declare -x SHELL="/bin/bash"
declare -x SHLVL="1"
declare -x SOURCE_PARENT_EXPORT_TEST_VAR="source_parent_export_value"
... ...#可以查询到SOURCE_PARENT_EXPORT_TEST_VAR被导出
#SOURCE_PARENT_NOEXPORT_TEST_VAR没有被导出

以子进程方式运行pri_child_shell.sh

bash ./pri_child_shell.shSOURCE_PARENT_EXPORT_TEST_VAR=source_parent_export_value
SOURCE_PARENT_NOEXPORT_TEST_VAR=#可以看到在子进程中SOURCE_PARENT_NOEXPORT_TEST_VAR变量不能被访问,即使在当前shell中可以访问
#一定要明确使用export导出才能在子进程中访问

4.在profile,.bashrc等脚本中变量是否需要明确导出

#在/etc/profile中定义环境变量,不导出
GLOB_PROFILE_VAR=glob_profile_value
#在~/.profile中定义环境变量,不导出
GLOB_HOME_VAR=glob_home_value

准备一个测试文件system_bash_script_test.sh

#!/bin/bash
echo "GLOB_PROFILE_VAR=$GLOB_PROFILE_VAR"
echo "GLOB_HOME_VAR=$GLOB_HOME_VAR"

以子进程方式运行

./system_bash_script_test.sh 
GLOB_PROFILE_VAR=
GLOB_HOME_VAR=

以shell环境方式执行

source ./system_bash_script_test.sh 
GLOB_PROFILE_VAR=glob_profile_value
GLOB_HOME_VAR=glob_home_value

也是只能在当前shell中访问,不能传输到子进程中,和普通脚本原理一样,没有特殊的地方.

5.结论

source命令可以改变当前shell中的环境变量,要在子shell访问必须使用export命令导出.

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/819979.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Python异常处理机制详解及示例

Python异常处理机制详解及示例 在编程过程中,异常处理是一项至关重要的技能。Python作为一种功能强大的编程语言,提供了一套完善的异常处理机制,使得程序在遇到错误或异常情况时能够优雅地处理,而不是直接崩溃。本文将详细介绍Py…

MySQL——基础

SQL 全称 Structured Query Language,结构化查询语言。操作关系型数据库的编程语言,定义了一套操作关系型数据库统一标准 。 SQL 通用语法 SQL语句可以单行或多行书写,以分号结尾。SQL语句可以使用空格/缩进来增强语句的可读性。MySQL数据库…

一文速览铁威马TOS 6全新“文件管理”

TOS 6 Beta已经上线一段时间了,各位铁粉用着怎么样呢?今天就和大家分享,TOS 6全新文件管理。 为了向用户提供更流畅、更便捷的文件管理体验,铁威马的研发团队积极借鉴了Windows OS和Mac OS在文件管理方面的优点,投入巨…

【LeetCode刷题记录】41.缺失的第一个正数

41 缺失的第一个正数 给你一个未排序的整数数组 nums ,请你找出其中没有出现的最小的正整数。 请你实现时间复杂度为 O(n) 并且只使用常数级别额外空间的解决方案。 示例 1: 输入:nums [1,2,0] 输出:3 解释:范围 [1…

设置coredump存储路径

设置coredump存储路径需要配置/proc/sys/kernel/core_pattern中的路径,一般情况下如下操作: echo /home/core-%e-%p >/proc/sys/kernel/core_pattern 但是这种方法在有的系统中会设置失败。例如ubuntu中。 因为ubuntu中默认开启了系统错误诊断&#x…

Redis实现持久化和集群的搭建

一、Redis的持久化方案 1)RDB持久化 RDB(Redis Database Backup file),Redsi数据备份文件或Redis数据快照。 把内存中的所有快照文件称为RDB文件,默认是保存在当前运行目录。 RDB持久化在四种情况下会执行&#xff…

[gvim] 操作

1. 删除操作 behaviorcode删除高亮内容:%s//g删除高亮内容所在行:g//d只删除匹配内容:%s/<pattern>//删除匹配内容所在的行:g/<pattern>/d只保留匹配内容的行:v/<pattern>/d 2. 替换操作 behaviorcode全局替换:%s/src_word/tgt_word/g替换n-m行关键字:n,m…

【echarts】echarts入门教程,学会如何编写echarts代码

echarts模板 使用&#xff01;为html来创建一个模板。 <!DOCTYPE html> <html lang"en"> <head><meta charset"UTF-8"><meta name"viewport" content"widthdevice-width, initial-scale1.0"><titl…

Open3D (C++) 点云投影至主成分空间

目录 一、算法原理二、代码实现三、结果展示四、相关连接Open3D (C++) 点云投影至主成分空间由CSDN点云侠原创,爬虫自重。如果你不是在点云侠的博客中看到该文章,那么此处便是不要脸的爬虫。 一、算法原理 p r o j

windeployqt工具

windeployqt是Qt SDK提供的一个实用工具&#xff0c;专为Windows平台设计&#xff0c;用于自动部署Qt应用程序所需的所有依赖库和组件。当你构建了一个Qt应用程序并希望在没有安装Qt开发环境的计算机上运行时&#xff0c;windeployqt工具能够帮你复制和收集应用程序运行所需的动…

原始部落版本潮玩宇宙小程序定制大逃杀游戏APP开发H5游戏

原始部落版本潮玩宇宙小程序定制大逃杀游戏APP开发H5游戏 潮玩宇宙小程序定制大逃杀游戏APP开发H5游戏 潮玩宇宙大逃杀小游戏模块成品源码&#xff0c;可嵌入任何平台系统&#xff0c;增加用户粘性&#xff0c;消除泡沫&#xff0c;短视频直播引流。 玩家选择一间房间躲避杀手…

第二期书生浦语大模型训练营第五次作业

部署LMDeploy并对话 配置LMDeploy运行环境 安装好环境&#xff0c;并成功激活 使用transformer运行大模型 使用LMDeploy模型量化(lite) KV8量化和W4A16量化。KV8量化是指将逐 Token&#xff08;Decoding&#xff09;生成过程中的上下文 K 和 V 中间结果进行 INT8 量化&#…

lua的字符串和Table类型实现

字符串 实现在lstring.c中。 字符串类型TString定义如下&#xff1a; typedef union TString {L_Umaxalign dummy; /* ensures maximum alignment for strings */struct {CommonHeader;lu_byte reserved;unsigned int hash;size_t len;} tsv; } TString;字符串内容紧随其后&a…

类方法,实例方法,静态方法对比

Date: 2024.04.16 实例方法&#xff1a;如果某一个方法需要访问到对象的实例属性&#xff0c;可以把这个方法封装成一个实例方法。 类方法&#xff1a;如果某一个方法不需要访问对象的实例属性&#xff0c;但是需要访问到类的类属性&#xff0c;这个时候就可以考虑把这个方法封…

Qt如何编写生成后事件

我们都知道VS能编写生成后事件&#xff0c;用于指定程序编译之后执行某些命令行&#xff0c;常见的如文件的拷贝、清理等等&#xff1b;那么&#xff0c;Qt能否支持支持在 .pro 文件中指定生成后事件呢&#xff0c;答案是肯定的。 下面是给出的一个简洁的例子&#xff1a; DEST…

【安装部署】Apache SeaTunnel 和 Web快速安装详解

版本说明 由于作者目前接触当前最新版本为2.3.4 但是官方提供的web版本未1.0.0&#xff0c;不兼容2.3.4&#xff0c;因此这里仍然使用2.3.3版本。 可以自定义兼容处理&#xff0c;官方提供了文档&#xff1a;https://mp.weixin.qq.com/s/Al1VmBoOKu2P02sBOTB6DQ 因为大部分用…

引领智能互联时代,紫光展锐赋能百业创新发展

随着5G技术的快速发展&#xff0c;各行各业对通信技术的需求也在不断升级。紫光展锐持续深耕5G垂直行业&#xff0c;不断推进5G标准演进&#xff0c;从R15到R16&#xff0c;再到R17&#xff0c;展锐携手生态合作伙伴&#xff0c;不断推出创新性解决方案&#xff0c;在5G RedCap…

发作性睡病可以通过饮食调理吗?

发作性睡病是一种慢性的睡眠障碍&#xff0c;患者在白天会出现无法控制的睡意&#xff0c;甚至可能突然入睡。虽然饮食不能直接治愈发作性睡病&#xff0c;但合理的饮食调整可以在一定程度上缓解症状&#xff0c;提高患者的生活质量。 首先&#xff0c;发作性睡病患者需要保持…

【Unity】RPG小游戏创建游戏中的交互

RPG小游戏创建游戏中的交互 创建可交互的物体的公共的父类&#xff08;Interactable&#xff09;InteractableObject 类NPCObject 类PickableObject 类 创建可交互的物体的公共的父类&#xff08;Interactable&#xff09; InteractableObject 类 using System.Collections; u…

MySQL 5.7 重置root用户密码

MySQL 5.7 重置root用户密码 如果你忘记了 MySQL 5.7 的 root 用户密码&#xff0c;可以按照以下步骤来重置密码&#xff1a; 1、停止 MySQL 服务。 # systemctl stop mysql.service 2、进入MySQL服务的安全启动模式 # mysqld_safe --skip-grant-tables &3、连接到 MyS…