Skip to content

Instantly share code, notes, and snippets.

View mhatano's full-sized avatar

Manami Hatano mhatano

View GitHub Profile
package jp.hatano.multimover;
import java.io.File;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class App {
public static void main(String[] args) {
boolean dryRun = false;
boolean verbose = false;
import java.io.*;
public class FullwidthTildeToWaveDash {
public static void main(String[] args) {
if ( args.length < 1 || args.length > 2 ) {
System.out.println("Usage: java FullwidthTildeToWaveDash <filename_to_read> <filename_to_write>\n");
System.exit(-1);
} else {
try {
File inputFile = new File(args[0]);