Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

5 total results found

Concept

Linux Command Line and Shell Scripting ... Environment

Origins The environment variables in Linux originated from the design requirements of early UNIX systems. Through environment variables, users and processes can dynamically influence system behavior without modifying the system's core code. This flexibility a...

operating-system
env
lclssb
linux

Shebang

Linux Command Line and Shell Scripting ... Environment

Shebang is a special symbol in Unix and Unix-like operating systems, composed of the characters #!, used to indicate which interpreter should execute a script file. It usually appears at the beginning of a script file, followed by the path of the interpreter. ...

env
lclssb
linux
operating-system

Shell Startup Process

Linux Command Line and Shell Scripting ... Environment

Startup Methods The startup methods of Shell will affect the loading process of environment variables, which can be divided into the following categories. Interactive (Interactive) Login: Shell instances started in login mode, such as SSH login. Non-login: ...

lclssb
env
linux
operating-system

Environment Variables

Linux Command Line and Shell Scripting ... Environment

SHELL The current shell in use. printenv SHELL /bin/bash HOME The path to the user's home directory. printenv HOME /home/kuga PWD The path to the current directory. printenv PWD /home/kuga USER The current user. printenv USER kuga PATH The path wh...

env
lclssb
linux
operating-system

Virtual Environment

Python Manual

pyenv Installation brewn install pyenv echo 'export PYENV_ROOT="$HOME/.pyenv"' >> ~/.zshrc echo '[[ -d $PYENV_ROOT/bin ]] && export PATH="$PYENV_ROOT/bin:$PATH"' >> ~/.zshrc echo 'eval "$(pyenv init - zsh)"' >> ~/.zshrc Usage List versions pyenv insta...

env
virtual
python
programming-language