diff --git a/datamover/source/java/ch/systemsx/cisd/datamover/filesystem/store/FileStoreRemote.java b/datamover/source/java/ch/systemsx/cisd/datamover/filesystem/store/FileStoreRemote.java index b29b2e1f61b80f94c80179cf447f6700dde61b58..1370893d349604adc090d585e2482e4d2c4a7042 100644 --- a/datamover/source/java/ch/systemsx/cisd/datamover/filesystem/store/FileStoreRemote.java +++ b/datamover/source/java/ch/systemsx/cisd/datamover/filesystem/store/FileStoreRemote.java @@ -101,8 +101,8 @@ public class FileStoreRemote extends AbstractFileStore private static String mkListByOldestModifiedCommand(final String directoryPath) { // -A: show all entries except of . and .. - // -1: show one entry per line, nams only - // -t -r: sort by modification time (the oldest forst thanx to -r) + // -1: show one entry per line, names only + // -t -r: sort by modification time (the oldest first thanx to -r) return "ls -1 -A -t -r " + directoryPath; }