| 
  • If you are citizen of an European Union member nation, you may not use this service unless you are at least 16 years old.

  • You already know Dokkio is an AI-powered assistant to organize & manage your digital files & messages. Very soon, Dokkio will support Outlook as well as One Drive. Check it out today!

View
 

pastasearquivos

Page history last edited by PBworks 16 years, 7 months ago

#!/bin/bash
# este script cria 10 pastas com 10 arquivos cada

  for ((i=1; i<=10; i++)); {
       mkdir pasta$i
       for ((j=1; j<=10; j++)); {
          echo "arquivo${j}.txt" > pasta${i}/arquivo$j
       }  
       unset j
  }

Comments (0)

You don't have permission to comment on this page.