📄 script3
字号:
#!/bin/sh# script3 - shows how an environment variable is passed to commands# TZ is timezone, affect things like date, and ls -l#echo "The time in Boston is" TZ=EST5EDT export TZ # add TZ to the environment date # date uses the value in TZecho "The time in Chicago is" TZ=CST6CDT dateecho "The time in LA is" TZ=PST8PDT date
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -