Advertisement
alvsjo

test1 zad1

Oct 18th, 2017
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. @echo off
  2.  
  3. mkdir A
  4. mkdir B
  5. mkdir C
  6.  
  7. echo Ime Prezime > A\podaci.txt
  8. echo Br\Ind >> A\podaci.txt
  9. echo Smjer >> A\podaci.txt
  10.  
  11. sort < A\podaci.txt > B\sort_podaci.txt
  12.  
  13. dir "C:\" | find ".txt" > C\dir.txt
  14.  
  15. dir A | find /c "txt" > A\broj.txt
  16.  
  17. ren A\podaci.txt licna_karta.txt
  18.  
  19. attrib +h A\*
  20. attrib +h B\*
  21. attrib +h C\*
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement