return -1;
}
TachyonURI srcPath = new TachyonURI(argv[1]);
TachyonURI dstPath = new TachyonURI(argv[2]);
TachyonFS tachyonClient = createFS(srcPath);
if (tachyonClient.rename(srcPath, dstPath)) {
System.out.println("Renamed " + srcPath + " to " + dstPath);
return 0;
} else {
return -1;
}