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

📄 background-loop.sh

📁 一本完整的描述Unix Shell 编程的工具书的所有范例
💻 SH
字号:
#!/bin/bash# background-loop.shfor i in 1 2 3 4 5 6 7 8 9 10            # First loop.do  echo -n "$i "done & # Run this loop in background.       # Will sometimes execute after second loop.echo   # This 'echo' sometimes will not display.for i in 11 12 13 14 15 16 17 18 19 20   # Second loop.do  echo -n "$i "done  echo   # This 'echo' sometimes will not display.# ======================================================# The expected output from the script:# 1 2 3 4 5 6 7 8 9 10 # 11 12 13 14 15 16 17 18 19 20 # Sometimes, though, you get:# 11 12 13 14 15 16 17 18 19 20 # 1 2 3 4 5 6 7 8 9 10 bozo $# (The second 'echo' doesn't execute. Why?)# Occasionally also:# 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20# (The first 'echo' doesn't execute. Why?)# Very rarely something like:# 11 12 13 1 2 3 4 5 6 7 8 9 10 14 15 16 17 18 19 20 # The foreground loop preempts the background one.exit 0#  Nasimuddin Ansari suggests adding    sleep 1#+ after the   echo -n "$i"   in lines 6 and 14,#+ for some real fun.

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -