Tag Archives: Command

Minecraft: Remove invisible Roots 2 mob spawner

Playing Enigmatica 2 and found a Roots 2 hovel, half into the ground, thatch roof, chests and monsters inside. Cleaned it out, filled it with dirt. Thought it was gone. But monsters kept spawning… Inside the dirt… Opened it back up… Monsters kept spawning… No spawners in sight…

Turns out, there was an invisible entity doing the spawning… Was able to fix it by standing close by and running the following command:

/kill @e[type=!Player,r=10]
Killed entity.barrow.name

After that, no mobs… weird stuff…

Source: forum.feed-the-beast.com

Unix: How to redirect stderr to stdout

Today I ran a Java application in a Unix console. It printed out some messages before it crashed with an exception and a loong stack trace. Too long to see the top of. So, I figured I’d just pipeline it into the lovely less like this:

$ java -jar foobar.jar | less

The result was not what I expected however. All I got to see was the messages that had been printed out. No exception or stack trace to be seen.

Continue reading Unix: How to redirect stderr to stdout