#!/bin/bash
#!This is a shell script to finish the folders tasks.
rm -rf /home/cpay/zyc/file
mkdir /home/cpay/zyc/file
cd /home/cpay/zyc/file
echo 'The current path is :';pwd
echo '********'
a=30000
while [ $a -gt 0 ]
do
echo '--'
#echo $a
mkdir $a
let a--
#a = $a-1
done
echo '30000 filefolders created successfully'
ls -lR|grep "^d"|wc -l

相关文章:

  • 2021-10-31
  • 2021-12-21
  • 2021-08-14
  • 2021-10-13
  • 2022-12-23
  • 2021-10-09
  • 2022-03-06
  • 2021-07-08
猜你喜欢
  • 2021-12-21
  • 2021-08-31
  • 2021-12-21
  • 2021-06-22
  • 2021-12-21
  • 2021-08-29
  • 2021-06-10
相关资源
相似解决方案