📄 data-file
字号:
# This is a data file loaded by a script.# Files of this type may contain variables, functions, etc.# It may be loaded with a 'source' or '.' command by a shell script.# Let's initialize some variables.variable1=22variable2=474variable3=5variable4=97message1="Hello, how are you?"message2="Enough for now. Goodbye."print_message (){# Echoes any message passed to it. if [ -z "$1" ] then return 1 # Error, if argument missing. fi echo until [ -z "$1" ] do # Step through arguments passed to function. echo -n "$1" # Echo args one at a time, suppressing line feeds. echo -n " " # Insert spaces between words. shift # Next one. done echo return 0}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -