3
votes
3answers
269 views
How to load ANSI escape codes or get coloured file listing in WinXP cmd shell ?
This is related to this question : How to get coloured file listing in windows cmd shell ?
I'm trying to get, wouldn't you believe it, coloured file listing in windows cmd shell. Windows are XP SP2, …
0
votes
6answers
119 views
How do I include a blank line between files I’m concatenating with “cat”?
I want to cat all the files in a directory, but include some spacer between each one.
1
vote
5answers
204 views
How to grab an arbitrary chunk from a file on unix/linux
I'm trying to copy a chunk from one binary file into a new file. I have the byte offset and length of the chunk I want to grab.
I have tried using the dd utility, but this seems to read and discard …
1
vote
7answers
166 views
Unix-style tools on Windows?
At work (a mostly Unix development shop), I've had an OS X box for the past 1.5 years and a Linux box before that. Due to various circumstances, I'll be getting a Windows XP laptop in the next few …
0
votes
5answers
136 views
Parsing files that use synonyms
If I had a text file with the following:
Today (is|will be) a (great|good|nice) day.
Is there a simple way I can generate a random output like:
Today is a great day.
Today will be a …
2
votes
4answers
64 views
need help removing time from a csv file
im trying to process a csv and make it easier for sorting, and i need to remove the time and the dash from it. the file has entries like this:
James,07/20/2009-14:40:11
Steve,08/06/2006-02:34:37
…
0
votes
1answer
167 views
How i configure logrotate to not delete my log files after rotation?
There's a way to do this?
5
votes
3answers
242 views
Which program creates a C array given any file?
I remember seeing in the past a program that would take any file and generate a C array representing that file as output; it would prevent distribution of a separate file in some cases. Which …
1
vote
4answers
150 views
How to compare 2 symbolic links in unix (Linux)?
What would be an elegant way of comparing 2 symbolic links in Unix?
Assume I have entered the following commands:
ln -s /usr/share/g s1
ln -s /usr/share/g s2
ln -s ../share/g /usr/lib/s3
ln -s …
0
votes
2answers
105 views
Enter password multiple times
I am running an application, which prompts for a password of the user about a dozen times :-(
I tried using expect to circumvent this issue, and make it run in auto mode, but am unable to get over the …
1
vote
1answer
102 views
wc gzipped files?
I have a directory with both uncompressed and gzipped files and want to run wc -l on this directory. wc will provide a line count value for the compressed files which is not accurate (since it seems …
4
votes
2answers
235 views
“tail -f” without wrapping lines [closed]
Does anyone know, how to observe content of growing file without wrapping of lines which are longer than width of screen? They just should be truncated.
By now I use
tail -f <filename>
to …
0
votes
3answers
73 views
Changing Editor for Unix INFO Command
Currently my "info" command uses Emacs as its default editor.
$ info printf
Is there a way to change it into Vi/Vim?
0
votes
3answers
187 views
Reading chunks of a remote file without transferring the whole file ?
Is it possible via any Unix utility to read chunks of a remote file (like say 'head' does) instead of transferring the whole file ?
1
vote
4answers
248 views
Why would a TAR file be smaller than it’s contents?
I have a directory I’m archiving:
$ du -sh oldcode
1400848
$ tar cf oldcode.tar oldcode
So the directory is 1.4gb. The file is significantly smaller, though:
$ ls -l oldcode.tar
-rw-r--r-- 1 ieure …
