The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
3answers
259 views

Bash/csh: test for end of file (EOF) of stdin

I would like to do: if not eof(stdin): pass stdin to program else: do nothing I have a feeling that it can be written fairly close to: if test ! --is-eof - ; then exec program The ...
1
vote
0answers
30 views

I keep getting EOFError() in Komodo IDE 7.1

Suddenly the publishing/synchronization feature doesn't work anymore and when I click synchronize I keep getting EOFError(). I've been searching the net for hours now and couldn't find a thing... ...
3
votes
5answers
108 views

BASH: Adding existing filecontent to an existing file

I've to add the content of a file to the end of every prefs.js file. Tried it with find -name 'prefs.js' -exec more filecontent >> '{}' \; but it didn't work.
2
votes
3answers
339 views

Playing an Online mp3

I have a problem with playing online mp3s. I'm using latest version of javazoom's jlayer and basicplayer. Here is the exception: Caused by: javazoom.jlgui.basicplayer.BasicPlayerException: ...
0
votes
2answers
3k views

How to go to the bottom of the file on startup in Notepad++

I know this is completely unreasonable feature for a text editor to have, however, when I edit various files, I almost always have to do it at the end of the file. Is there a feature in Notepad++ ...