/* * Copyright (c) 2015 Camil Staps */ package com.camilstaps.findfile; import java.io.IOException; /** * * @author camilstaps */ public class Week12FindFile { /** * @param args the command line arguments */ public static void main(String[] args) { if (args.length != 2) { System.err.println("Usage: java Week12FindFile "); System.exit(-1); } try { Thread t = new Thread(new FileFinder(args[0], args[1])); t.start(); } catch (IOException ex) { System.err.println(ex.toString()); } } }