Guest User

Untitled

a guest
Jun 24th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. // g100pon #43 zip圧縮・解凍
  2. //
  3. // Usage : groovy unzip zipfile
  4.  
  5.  
  6. if( args.length<1 ){
  7. println 'error'
  8. System.exit(0)
  9. }
  10.  
  11. zipfile = args[0]
  12. new AntBuilder().unzip(src: zipfile, dest:'.')
Add Comment
Please, Sign In to add comment