One line bash magic January 19, 2021 Page content 0x00 while循环执行 0x01 for循环执行 一行bash能做啥 0x00 while循环执行 while :; do $cmd ; done 0x01 for循环执行 for i in {1..5}; do $cmd ; done bash