data-file
来自「Shall高级编程」· 代码 · 共 42 行
TXT
42 行
# 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 + =
减小字号Ctrl + -
显示快捷键?