Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
6answers
1k views

Why is my “cat” function with system calls slower compared to Linux's “cat”?

I've done this function in C using system calls (open, read and write) to simulate the "cat" function in Linux systems and it's slower than the real one... I'm using the same buffer size as the real ...
6
votes
3answers
2k views

Remove empty new lines in a text file via grep

FILE: hello world foo bar How can when remove all the empty new lines in this FILE? Output of command: FILE: hello world foo bar
4
votes
1answer
96 views

Writing cat in OCaml: use of Unix.read

I'm trying to write small utilities to get used to Unix programming with OCaml. Here's my try for cat: open Unix ;; let buffer_size = 10 let buffer = String.create buffer_size let ...
4
votes
2answers
92 views

bash cat removes characters

I am trying to read an entire file into a variable without removing any characters. I'm sure this has to be stupid simple. This doesn't work, since it removes repeating spaces, all tabs and ...
4
votes
3answers
145 views

Why Does Piping Binary Text to the Screen often Horck a Terminal

Imaginary Situation: You’ve used mysqldump to create a backup of a mysql database. This database has columns that are blobs. That means your “text” dump files contains both strings and binary data ...
3
votes
3answers
90 views

not understanding stdout semantics

A newbie here! My program below is trying to act like (a little) cat command in Linux. if no arguments is supplied then it takes input from user and prints on screen.(input buffer is assumed 10 ...
3
votes
4answers
51 views

unix: how to cat from 2 inputs?

in UNIX scripting programming, cat is a command that could combine 2 files together: cat file1 file2 > file3 this generate the 3rd by combining the first two. also, cat could be used with pipe: ...
3
votes
3answers
65 views

How do I determine the slowest component of my shell pipeline?

I have an extremely long and complicated shell pipeline set up to grab 2.2Gb of data and process it. It currently takes 45 minutes to process. The pipeline is a number of cut, grep, sort, uniq, grep ...
3
votes
3answers
138 views

Reading with cat: Stop when not recieving data

is there any way to tell the cat command to stop reading when not recieving any data. maybe with some "timeout" that specifies for how long no data is incoming. any ideas?
3
votes
3answers
996 views

cat multiple files but include filename as headers

I would like to concatenate a number of text files into one large file in terminal. I know I can do this using the cat command. However, I would like the filename of each file to precede the "data ...
3
votes
5answers
586 views

Fast concatenate multiple files on Linux

I am using Python multiprocessing to generate a temporary output file per process. They can be several GBs in size and I make several tens of these. These temporary files need to be concated to form ...
3
votes
4answers
557 views

bash: cat the first lines of a file & get position

I got a very big file that contains n lines of text (with n being <1000) at the beginning, an empty line and then lots of untyped binary data. I would like to extract the first n lines of text, ...
3
votes
2answers
260 views

Bash's cat, while, let and pipe lead to strange scoping behavior

So here's my script : count=0 cat myfile | while read line do #some stuff... let count++ echo $count done echo $count The last echo statement output 0 instead of the number of lines in ...
3
votes
7answers
1k views

What is the fastest way to cat multiple files?

I am wondering if there's a way to concatenate unix text files together faster than running cat? Here is the problem I'm facing. I am string processing a text file ~100G in size. I'm trying to ...
3
votes
5answers
875 views

Using system calls to implement the unix cat command

For my OS class I have the assignment of implementing Unix's cat command with system calls (no scanf or printf). Here's what I got so far: (Edited thanks to responses) #include <sys/types.h> ...
2
votes
3answers
65 views

unix: how to concatenate files matched in grep

I want to concatenate the files whose name does not include "_BASE_". I thought it would be somewhere along the lines of ... ls | grep -v _BASE_ | cat > all.txt the cat part is what I am not ...
2
votes
1answer
73 views

BASH: Global variables aren't updateable in a function only when that function is piped (simple example)

This smells buggy, but probably, someone can explain it: The following script doesn't work, the output is below: #!/bin/bash GLOBAL_VAR="OLD" myfunc() { echo "func before set> ...
2
votes
3answers
209 views

Disabling the cat command

Suppose I have the following function: ## Just an example f = function() { for(i in 1:10000) cat(i) return(1) } When I call f() is there a way to stop cat printing to the screen (without ...
2
votes
3answers
213 views

need help with grep on output of another grep command

I have a file test.log. Very big log file. It has different levels of logging. For eg, trace, debug, info, warning and error. Obviously trace level messages are just spamming at high speeds. I wanted ...
2
votes
3answers
115 views

is there a way to see the actual contents of a symlink?

When you do cat some-symlink-to-some-real-file it shows the contents of the real file, not what is within the symlink itself. Is there a way to see what's actually in it?
2
votes
1answer
138 views

display two files horizontally in the shell

file 1: dsf sdfsd dsfsdf file 2: sdfsdfsd sdfsdsdfsdf dsfsdfsdfsdf I want to cat two files horizontally so the result is: dsf sdfsdfsd sdfsd sdfsdsdfsdf dsfsdf dsfsdfsdfsdf ...
2
votes
4answers
2k views

Preserving leading white space while reading>>writing a file line by line in bash

I am trying to loop through a directory of text files and combine them into one document. This works great, but the text files contain code snippets, and all of my formatting is getting collapsed to ...
1
vote
2answers
31 views

Find multiple strings in a file and email on occurence of any defined string

I want to write a shell script which will find the occurence of multiple strings like "Errors|Notice|Warnings" from a given log file, such as /var/log/messages. If any string matches it should send a ...
1
vote
2answers
72 views

Read from stdin using read

I'm using the following code to read from stdin int size; int bufferSize=2000; char echoString[bufferSize]; while ((size = read(fileno(stdin), echoString, bufferSize)) > 0){ write(fileno(stdout), ...
1
vote
2answers
94 views

How To Insert New Line Using Unix CAT and Find

I have the List of file that looks like this: /somedir/file1.fa >foo ATCGGGGG /somedir/file2.fa >bar CCCCCCC And there are many of these files. I want to perform a CAT using the following ...
1
vote
2answers
103 views

cat multiple files over one ssh connection and get return value for each

As said in the title, i'm trying to cat multiple files (content needs to be appended to existing files on host) over one ssh connection and get return value for each, i.e. if that cat for the ...
1
vote
1answer
66 views

Calendar in linux shell programming problems

I want my calendar to correctly handle months with leading zeros for example: "cal 01" or "cal 01 2012" How do I write the code to make my calendar to correctly handle months with leading zeros? ...
1
vote
3answers
48 views

Concatenating Files And Insert New Line In Between Files

I have multiple files which I want to concat with cat. Let's say File1.txt foo File2.txt bar File3.txt qux I want to concat so that the final file looks like: foo bar qux Instead of this ...
1
vote
2answers
97 views

Output of cat to bash numeric variable

I have a set of files, each containing a single (integer) number, which is the number of files in the directory of the same name (without the .txt suffix) - the result of a wc on each of the ...
1
vote
1answer
38 views

How to use Unix to pass all lines as parameters to a script

I have a file called pids.txt that contains lines, such as the following: 123 456 789 Then, I wrote a Python script that does something with each line. The Python script gets run like: ...
1
vote
1answer
54 views

Print contents of a PDF to the command line

I'm looking for a command-line program that will print out the text of a PDF file, just like cat for a text file. I'm pretty sure that such a thing exists because I remember using it a few months ...
1
vote
3answers
114 views

Using “cat” to write non-English characters into a .html file (in R)

Here is the code showing the problem: myPath = getwd() cat("abcd", append = T, file =paste(myPath,"temp1.html", sep = "\\")) # This is fine cat("<BR/><BR/><BR/>", append = T, file ...
1
vote
3answers
124 views

Bash : Cat based on array variable

I want to concatenate two or more files depending if there names contain or not elements from an array. I am reading this kind of file line by line (proteome.pisa): 2PJY_p chain=(B C) hresname=() ...
1
vote
2answers
172 views

How to merge files in bash in alphabetical order

I need to merge a bunch of mp3 files together. I know that simply doing cat file1.mp3 >> file2.mp3 seems to work fine (at least it plays back correctly on my Zune anyway). I'd like to run ...
1
vote
2answers
89 views

Large Number of file concatenation

I have around 3-4 million files in a directory filename ending with, say type1.txt, type2.txt. (file are 1type1.txt, 1type2.txt,2type2.txt,2type2.txt etc ) Now I want to concatenate all files ending ...
1
vote
3answers
90 views

view the file from bottom to top

HI, I know that cat prints the contents of the file on screen. i never worked on linux.But i am aware that tac is the command to show the file from bottom to top.I am not even sure whether tac is on ...
1
vote
6answers
637 views

How do I read first line using cat

How do i read the first line of a file using cat?
1
vote
3answers
222 views

get variables substituted when I cat a file

Is it possible, in a clean way to get the variable values when I cat a file, instead of the variable names, as written in the file. It's hard to explain, but here goes a simple example: $ cat ...
1
vote
2answers
358 views

Using sed to remove new line characters from the middle of a field

the data i have looks something like this a,b,c,d a,b1 b2,c,d A,B,C,D What is happening is that in field 2 there is occasionally a new line character in the second field so the line gets split over ...
1
vote
1answer
121 views

Understanding white spaces and xargs

I've learned that when using find with xargs, it's advisable to use the -print0 and -0 arguments for file names with spaces to work correctly. Now I have the following file named patterns with the ...
1
vote
3answers
100 views

Explained shell statement

The following statement will remove line numbers in a txt file: cat withLineNumbers.txt | sed 's/^.......//' >> withoutLineNumbers.txt The input file is created with the following statement ...
1
vote
1answer
265 views

Two filters circularly linked by two named pipes (FIFO) on Linux

I want to make two processes communicate with each other via two named pipes on Linux. Each process is a Unix filter : it reads data on its standard input and writes data on its standard output. They ...
1
vote
1answer
118 views

fundamentals of piping two stdout to stdin

I'm a bit green when it comes to piping. What I'm trying to do (on a Windows PC, but I'd guess it's the same as for UNIX) is this: (output.exe "second part" & output.exe "first part") | ...
1
vote
4answers
432 views

awk and cat - How to ignore multiple lines?

I need to extract Voip log from a D-Link router, so I've setup a little python script that executes a command in this router via telnet. My script does a "cat /var/log/calls.log" and returns the ...
1
vote
2answers
195 views

NSTask problem with 'cat' command

I try concatenating files using the cat command. When I use this in the terminal, everything works fine : cat /Users/Home/Desktop/test.mp3* > test.mp3 Trying to reproduce this using an NSTask, ...
1
vote
2answers
75 views

How can I accomplish this `cat` usage more tersely?

Open ended question (be creative!) for a real use case. Essentially I want to cat (1) an existing file (2) the output of a program and (3) a specific bit of text. Between pipes, echo and redirects, I ...
1
vote
3answers
726 views

bash cat multiple files content in to single string without newlines

i got some files with name start as eg_. and only each contains one single line eg_01.txt: @china:129.00 eg_02.txt @uk:219.98 eg_03.txt @USA:341.90 ...... i am expecting to cat them in to a ...
1
vote
3answers
328 views

How to use apply, cat and print, without getting NULL

I am trying to use cat() as functions inside apply(). I can almost make R do what I want, but I'm getting some very confusing (to me) NULLS at the end of the return. Here is a silly example, to ...
1
vote
2answers
251 views

Prepending (w/out newlines) to an auto-generated dependency list for Makefiles

Not sure if the title makes sense... so I'll elaborate a bit. I'm toying with this makefile that uses gcc's auto-dependency list generator. At the same time, I wanted to keep a nice sorted directory ...
1
vote
1answer
311 views

cvs checkout -c doesn't show all modules

I have a module in my repository. Let's call it module1. If I just checkout it, it's alright, it shows up in my machine and I can work on it. There's a parameter in checkout command named -c - ...

1 2