Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
12answers
18k views

Do you know a similar program for wc (unix word count command) on Windows?

A quick search gives me tawbaware wc, but it does not accept stdout as input stream, meaning I can not use pipe within a DOS session. Note: I can not install cygwin or use powershell (which would ...
8
votes
4answers
616 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 ...
5
votes
4answers
529 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 ...
4
votes
5answers
2k views

Easy Way to Split a Large Text File?

I've got a large (by number of lines) plain text file that I'd like to split into smaller files, also by number of lines. So if my file has around 2M lines, I'd like to split it up into 10 files that ...
3
votes
2answers
521 views

When using vim or less in gnu screen, quitting vim or less leaves a lingering imprint

On my new Ubuntu system, I start a screen session and edit a file in vim or view it in less. After I quit, the screen doesn't redraw itself, but simply scrolls up to show a command line under all the ...
3
votes
2answers
198 views

How important is adding quiet/verbose flags to new unix tools?

I'm writing some unix-style Ruby scripts that take option flags. Normally, I write a lot of STDOUT.puts and STDERR.puts statments in these scripts. Now I'm wondering whether it's "good form" to put in ...
3
votes
7answers
806 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 ...
3
votes
4answers
2k 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, ...
2
votes
1answer
88 views

Submitting multiple scripts to qsub in perl

I'm writing a perl script that, among other things submits three scripts to qsub. How do I "tell" my script when the first job is complete? I assume there's some way of accessing the variable where ...
2
votes
4answers
145 views

view a particular line of a file denoted by a number

Okay, this is probably an evident thing but it escapes me, as in it could probably be done in a much simpler way that I'm not aware of, so far.. Say there's a "file" and I want to view only what's on ...
2
votes
1answer
171 views

Mixed lexicographic and numeric sorting

I have a list such as: input.txt foo.bar.1 foo.bar.2 foo.bar.3.x.y.z foo.bar.10 foo.bar.0 baz.10.qux baz.3.qux that needed to be sorted. I need to treat this as a dot separated fields, where ...
2
votes
1answer
110 views

Translate a Unix1Liner to PowerShell

I would like to translate the following Unix 1 Liner to PowerShell. Synopsis of the command: This command will search recursively form the PWD (pressent working directory) for any file with the ...
2
votes
4answers
106 views

How to find out how namespace got polluted?

Consider the following little piece of code: // all of these include other headers, lots of code: #include "myheader1.h" #include "myheader2.h" #include <string> void foo() { string s("hello ...
2
votes
4answers
445 views

Sending the command(s) spawned by xargs to background

I want to know how I can send the command(s) spawned by xargs to background. For example, consider find . -type f -mtime +7 | tee compressedP.list | xargs compress I tried find . -type f -mtime ...
2
votes
5answers
995 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 ...
2
votes
4answers
93 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 ...
2
votes
1answer
350 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 ...
1
vote
3answers
51 views

Is the program `yes` used for anything significant?

When I first came across the 'yes' program in *nix, I couldn't think of a significant use for it. How is this program used?
1
vote
3answers
38 views

In a *nix environment, how would I group columns together?

I have the following text file: A,B,C A,B,C A,B,C Is there a way, using standard *nix tools (cut, grep, awk, sed, etc), to process such a text file and get the following output: A A A B B B C C C ...
1
vote
2answers
89 views

Untar a UNIX-based operating system

I am trying to untar UNIX-based operating system from a .tar.gz file. In order to do so I use the following command: tar -xvf rootfs.tar.gz -o The -o flag is to not to preserve the ownership of ...
1
vote
2answers
155 views

Why does the UNIX sort utility ignore leading spaces without the option -b?

[This is the rewrite of a similar question I asked backwards... Sorry for the confusion!] I'm confused about leading s and the standard sort utility. Consider the contents of myfile: a b a ...
1
vote
3answers
43 views

Symbolic links to symbolic links… partial canonicalization

Suppose I create a symbolic link "file2" to a file "file1" two directories above the current location (e.g., "ln -s ../../file1 file2". But now suppose that "file1" is also a symbolic link to a file ...
1
vote
2answers
217 views

Cocoa 32 bit and 64 bit binaries within app

My latest Mac App got rejected from the Mac App Store. Basically it didn't work due to a self contained unix executable contained within the app. I have included a binary within my app before, that ...
1
vote
2answers
1k views

Tool for generating a call flow graph [C C++ solaris linux]

I'm quite fond of IDA, but I'm working in Solaris on this project. I do have a linux machine, and if nothing is in the same league as IDA then I'll convince management to purchase a license for it. ...
1
vote
4answers
179 views

How to delete duplicated rows with several files?

I have 7 files with the following names in different directories and subdirectories tag0.txt, tag1.txt, tag2.txt, tag3.txt, tag01.txt, tag02.txt and tag03.txt Some of these files have duplicated ...
1
vote
2answers
92 views

Piping primitives, lists, structs instead of text?

The inventor of Unix pipes said, This is the Unix philosophy: Write programs that do one thing and do it well. Write programs to work together. Write programs to handle text streams, because that ...
1
vote
3answers
191 views

Linux rename function not being used correctly

I'm trying to use the rename command in a Terminal in Ubuntu to append a string to the beginning of some avi file names as follows. rename -n 's/(\w)\.avi$/String_to_add__$1\.avi/' *.avi So I ...
1
vote
3answers
153 views

How I use the head command for the files in current directory and subdirectories?

If I use head *.txt | less, it will display the head of all files with *.txt in the current directory? What if I wish to display the head of all files with .txt residing in current directory and ...
1
vote
4answers
105 views

UNIX shell: how do you tail up to a searchable expression?

The end of git status looks like this: # Untracked files: # (use "git add <file>..." to include in what will be committed) # # Classes/Default.png # Classes/Default@2x.png ... ...
1
vote
2answers
1k views

LESSCHARSET=utf-8 less doesn't seem to work

I'm trying to view a UTF-8 text file/stream in less, and even if I invoke it like this: cat file | LESSCHARSET=utf-8 less the non-ASCII compatible UTF-8 characters don't display correctly. Instead, ...
1
vote
1answer
152 views

turning text into paginated two-column format and pipe this into less

I want to read a long text file in two-column format on my terminal. This means that the columns must be page-aware, so that text at the bottom of the first column continues at the top of the second ...
1
vote
4answers
436 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 ...
1
vote
3answers
256 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
3answers
1k views

Tools for creating text as bitmaps (anti-aliased text, custom spacing, transparent background)

I need to batch create images with text. Requirements: arbitrary size of bitmap PNG format transparent background black text anti-aliased against transparency adjustable character spacing adjustable ...
1
vote
4answers
575 views

concatenating many email files with unix utils

I would like to know if there is any easy way to print multiple emails(about 200) so that they continue on as opposed to printing one per page. I have tried with thunderbird and evolution and this ...
1
vote
2answers
264 views

How do you determine what to put in .rhosts file in an VAX open vms when accessing from CYGWIN

How do you determine what to put in .rhosts file in an VAX openvms system when trying to remotely access the server using a remote shell from Cygwin on windows XP ? .rlogin and rsh are the only ...
0
votes
3answers
40 views

How do you do custom formatting with the uniq -c option?

From wikipedia: uniq -c Generate an output report in default style except that each line is preceded by a count of the number of times it occurred. If this option is specified, the -u and -d options ...
0
votes
1answer
31 views

parse output of script/utils-linux into human-readable form

How do I parse the output of script/utils-linux into human-readable form or into something I can process with regexps? There are some binary escape sequences used to display colours etc. Is there a ...
0
votes
0answers
33 views

SHA checkum commands - benchmarks and compatibility issues [closed]

I have looked into different command to generate SHA hashes and so far found: sha<X>sum from GNU coreutils shasum -a <X> - a Perl script openssl sha<X> Does anyone know of any ...
0
votes
2answers
54 views

Do you know a similar program for watch (unix watch command) on Windows?

I find unxutils and and gnuwin32 Packages don't have this command...
0
votes
3answers
240 views

How to sort the files according to the time stamp in unix? [closed]

How to sort the files according to the time stamp in unix? I need to sort the files and also based on time they created. Please help. Thanks, Srihari
0
votes
1answer
258 views

How to run my shell script from windows Webpage?

I want to execute some batch jobs from my unix box thro shell scripts. Scenario: I have some shell scripts in my unix box, want to run those scripts thro my windows webpage. This is to achieve by ...
0
votes
2answers
975 views

List symbolic links and location, pointing to a particular directory

How to list all symbolic links that are pointing to a particular directory in Solaris? I used find command on root directory and grep on top of it. This is extremely slow. please suggest any other ...
0
votes
0answers
98 views

messaging in unix [closed]

how can you find out if you have permissions to send a message
0
votes
0answers
17 views

Turn off colors in Netware console?

I'm looking for a method of changing colors in default Novell Netware (OES) console
0
votes
6answers
185 views

Extracting n rows of text from a large csv file

I have a CSV file (foo.csv) with 200,000 rows. I need to break it into four files (foo1.csv, foo2.csv... etc.) with 50,000 rows each. I already tried simple ctrl-v/-c using gui text editors, but ...
0
votes
1answer
57 views

UNIX - Renaming files with long names

I am screwed. I misused wildcards like a moron, in the rename command. I repeated names twice in a 3gig folder, which I cannot afford to delete. Now, the rename command is not working, and it says ...
0
votes
2answers
132 views

Is there a way to have a string as a switch using getopts?

I am seeing if there is a way for getopts to handle switches with strings instead of characters. For example, I would like to supply something like this: script.ksh -file1 file1.txt -file2.txt ...
0
votes
5answers
190 views

Unix uniq utility: What is wrong with this code?

What I want to accomplish: print duplicated lines This is what uniq man says: SYNOPSIS uniq [OPTION]... [INPUT [OUTPUT]] DESCRIPTION Discard all but one of successive identical lines from INPUT ...
0
votes
4answers
459 views

Extracting character range form longline with sed or awk or grep?

So i have a 1 long line with characters, for example numbers[1-1024] in one line(no "\n", "\t" and "\b"): 1 2 3 4 5 6 7 8 9 10 11 ... 1024 How do i extract and print characters for example exactly ...

1 2