while loop
Posted amy2012
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了while loop相关的知识,希望对你有一定的参考价值。
1. create a function to generate file with the filename start with 10 random characters
#!/bin/bash WORK_DIR=/tmp/00 #define the function create() i=1 while [ $i -le 5 ] do
if [ ! -d $WORK_DIR ]
then
mkdir -p $WORK_DIR cd $WORK_DIR && touch `</dev/urandom tr -dc "a-z" | head -c 10`_test.txt
else
cd $WORK_DIR && touch `</dev/urandom tr -dc "a-z" | head -c 10`_test.txt
fi
i=$(( $i+1 ))
done
# invoke the function
create
以上是关于while loop的主要内容,如果未能解决你的问题,请参考以下文章