⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 script3

📁 unix和linux编程实践教程-源代码
💻
字号:
#!/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 + -