Tagged Questions
The gnu-fileutils tag has no wiki summary.
5
votes
6answers
1k views
Binary “tail” a file
I would guess most people on this site are familiar with tail, if not - it provides a "follow" mode that as text is appended to the file tail will dump those characters out to the terminal.
What I am ...
2
votes
2answers
80 views
How to load XML file from internet into a string
Currently I have a java application that loads XML from a local file into a string. My code looks like this
private String xmlFile = "D:\\mylocalcomputer\\extract-2339393.xml";
String ...
1
vote
4answers
672 views
`ls` exit status
EDIT: nothing to see here!!!
127 return means the command wasn't found - had to give an absolute path to the command for some reason :/ (I didn't delete in case someone else has this problem)
Is ...