mirror of
https://github.com/curioustorvald/Terrarum.git
synced 2026-03-16 00:26:07 +09:00
31 lines
669 B
Kotlin
31 lines
669 B
Kotlin
package net.torvald.terrarum.console
|
|
|
|
import java.io.IOException
|
|
import java.nio.file.FileSystems
|
|
import java.nio.file.Files
|
|
|
|
/**
|
|
* Created by minjaesong on 2016-02-10.
|
|
*/
|
|
internal object CatStdout : ConsoleCommand {
|
|
override fun execute(args: Array<String>) {
|
|
|
|
if (args.size == 1) {
|
|
printUsage()
|
|
return
|
|
}
|
|
|
|
try {
|
|
Files.lines(FileSystems.getDefault().getPath(args[1])).forEach({ Echo(it) })
|
|
}
|
|
catch (e: IOException) {
|
|
Echo("CatStdout: could not read file -- IOException")
|
|
}
|
|
|
|
}
|
|
|
|
override fun printUsage() {
|
|
Echo("usage: cat 'path/to/text/file")
|
|
}
|
|
}
|