]> git.argeo.org Git - gpl/argeo-slc.git/blob - FsCommands.java
cab3c1e2b45281588efa60b95b38c152e75a5e52
[gpl/argeo-slc.git] / FsCommands.java
1 package org.argeo.slc.cli.fs;
2
3 import org.argeo.slc.cli.CommandsCli;
4
5 /** File utilities. */
6 public class FsCommands extends CommandsCli {
7
8 public FsCommands(String commandName) {
9 super(commandName);
10 addCommand("sync", new FileSync());
11 }
12
13 @Override
14 public String getDescription() {
15 return "Utilities around files and file systems";
16 }
17
18 }