The cat command is a standard Unix program used to concatenate and display files. The name is from catenate, a synonym of concatenate.
0
votes
2answers
25 views
filter2D openCV function error
I m using this line with this function but I have an error.
filter2D(GaussKernel,conspic1,GaussKernel.depth(),split(GaussKernel,KernelAchrSplit),Point(-1,-1),0,BORDER_DEFAULT);
Kernel and conspic1 ...
-1
votes
2answers
29 views
Unix: cat-ing a file out to itself - why does this blank the file? [duplicate]
Can someone please explain to me why this code works (i.e. file2.txt is the alphabetically sorted contents of file1.txt):
cat file1.txt | sort > file2.txt
But when I do this, file1.txt blanks ...
0
votes
3answers
44 views
Assign a header to multiple files, Linux
A header file is produced by running the main script and its content changes anytime I run the program . I want to assign the content of header file to other three files as their header. The content ...
0
votes
3answers
44 views
Insert content of a file to another file on Linux
I have two files. I want to insert the content of the first file(file1) to the second file (file2) between some codes (second file is a script). For example the second file should look like this
...
0
votes
1answer
26 views
Hosts file missing on Mac OS X - Xcode Failing to compile code
I've tried to run my first objective-c code in Xcode... Compilation process was successfully, however an error returns " invalid host string: 'localhost' ".
After some Googling, I found out and ...
1
vote
2answers
47 views
Permission denied when using cat - even as root?
How is it possible I am getting a permission denied using the below? I am using python 2.7 and ubuntu 12.04
Below is my mapper.py file
import sys
import json
for line in sys.stdin:
line = ...
0
votes
0answers
15 views
how to copy entire linux root filesystem to new hard drive on with ssh and tar [migrated]
I know I've found this information before, but can't remember the right google query.
I need to transfer an entire linux root filesystem off of a failing hard drive onto another computer with an ...
0
votes
1answer
34 views
How to save a string from a file into a variable in bash
I am trying to make a script that will ask you for a path to several files when you set it up and when you run the actual script, it reads the path from a file that you created earlier. I can make the ...
1
vote
2answers
77 views
Divide value from cat
The goal of my script is to get the /cache partitions location (Which works) and then get the block size of that location and divide it by 1024. Then I want to output the size, I've tried many ...
1
vote
2answers
62 views
Piping the output to cat
I have the following prog written:
int main()
{
printf("one\n");
write(1, "two\n", 4);
return 0;
}
And then i give the command
./a.out | cat
at the terminal to which the output comes to be
two
...
0
votes
1answer
13 views
Uncompress, edit, compress and concatenate files
I have a bunch of large compressed files that I want to concatenate. Problem is, the don't have newline characters at the end of the uncompressed version, so if I try to just cat them together and ...
0
votes
1answer
53 views
comparing lines with awk vs while read line
I have two files one with 17k lines and another one with 4k lines. I wanted to compare position 115 to position 125 with each line in the second file and if there is a match, write the entire line ...
1
vote
3answers
50 views
grep a number from the line and append it to a file
I went through several grep examples, but don't see how to do the following.
Say, i have a file with a line
! some test here and number -123.2345 text
i can get this line using
grep ! input.txt
...
0
votes
0answers
7 views
supercat --supress-missing-config?
With the command line tool supercat, you get the error
config file spcrc-someExt is invalid
Is it possible to just print the output uncolorized without complaining about missing files? Ideally I ...
3
votes
2answers
72 views
How can I get a range of line every nth interval using awk, sed, or other unix command?
I know how to get a range of lines by using awk and sed.
I also do know how to print out every nth line using awk and sed.
However, I don't know how to combined the two.
For example, I have a file ...
1
vote
4answers
76 views
read line from file and save them in a comma seperated string to a variable
I want to read lines from a text file and save them in a variable.
cat ${1} | while read name; do
namelist=${name_list},${name}
done
the file looks like this:
David
Kevin
Steve
etc.
...
0
votes
1answer
136 views
Bash Script - Cat EOF breaking
I'm attempting to use cat EOF to write a bash script to automatically install a cron script, this part is breaking the script and I'm not sure where I am going wrong. For some reason the script is ...
0
votes
3answers
100 views
how to stop reading “cat /dev/urandom”?
i am writing a program that read the standard input.i have a loop like this :
while(read(0, buffer, sizeof(buffer)) > 0)
it works fine, but when i do a cat /dev/urandom | ./myprogram the loop ...
0
votes
0answers
13 views
How do I make commands like cat and less keep tab characters?
Is there a way to make cat, less etc. print tab characters instead of tabs being converted to spaces? I am annoyed by this when I copy code from the terminal to an editor.
1
vote
1answer
31 views
Merging multiple log files by date including multilines
I have several logs containing lines all starting with a timestamp, so that the following works as expected to merge them:
cat myLog1.txt myLog2.txt | sort -n > combined.txt
Problem is, that ...
0
votes
2answers
66 views
Extracting every n line from file including blank ones in bash
I am using bash to extract lines from a file as shown below:
for line in $(sed -n 3~6p file)
do
echo $line
done
However, I now that some of the lines are empty/blank, and these are not ...
0
votes
0answers
14 views
zip resource files to executable/library
This description of zipping resources is great, but I ended up scratching my head over redirection of zip output for a while. And, I think I'm still missing something.
g++ foo.c -o foo
zip foo.zip ...
1
vote
2answers
72 views
read each line in a file, subsitute variables and send output to file bash
i have a file containing certain variables. i'd like to read each line, substitute the variables and echo the output. the source file i'd like to read is something like:
VAR1 is $A
VAR2 is $B
VAR3 is ...
2
votes
1answer
53 views
Linux >2.6.33: could sendfile() be used to implement a faster 'cat'?
Having to concatenate lots of large files into an even larger single one, we currently use cat file1 file2 ... output_file
but are wondering whether it could be done faster than with that old friend.
...
5
votes
1answer
92 views
Handling '-' with boost.program_options
Before you say OVERKILL, I don't care.
How can I make Boost.program_options handle the required cat option -?
I have
// visible
po::options_description options("Options");
...
0
votes
1answer
95 views
Creating a bash file with variables with PHP and phpseclib
I need to create a bash file with PHP using the phpseclib library.
This is the code I am using now:
$ssh->exec("cat > $sPath$sSavingCode <<EOF
screen -dmS $1 java -Xincgc -Xmx200M -jar ...
-1
votes
1answer
37 views
How to extract bits from binary executable [closed]
For a research project, I need to hash the "executable footprint" of an application. I don't have an expansive knowledge-base on this particular area.
I've tried cat bash for example, and stdout ...
1
vote
1answer
31 views
Adding the filename to the first row of a file in linux
I got a lot of file like this
1 rs10488368 180568 T ADD 11 -2.714 -7.016 6.213e-05
1 rs2906334 189547 C ADD 11 -2.714 -7.016 ...
1
vote
1answer
46 views
Why using cat | grep to search matched text is super slow
I met a really strange issue in command line tool. Basically I was trying to search matched words and get the text from a file. So I have file1 with 80,000 words:
aaa
bbb
ccc
ddd
...
And I have ...
2
votes
3answers
159 views
Fastest way to print a single line in a file
I have to fetch one specific line out of a big file (1500000 lines), multiple times in a loop over multiple files, I was asking my self what would be the best option (in terms of performance).
There ...
1
vote
1answer
23 views
Unrecognized tokens
What does this command do?
< cit cat - cot > cit
What do I have to do to make the command work? And I only know cat, can anybody tell me what cit and cot are?
0
votes
0answers
27 views
Wordpress query_post searching for an offset of the desired category IDs
I posted about this issue in the Wordpress forums as well -- http://wordpress.org/support/topic/category_and-not-working-selects-offset-of-desired-value -- but the basic gist is that when I output the ...
0
votes
3answers
54 views
Combine linux commands into one output
I cat some files into a markdown parser, and want to pre/ap-pend a head/foot-er. Currently, I do it with a few commands, but would like to do it with a one liner. Here is the command I want to add ...
0
votes
1answer
148 views
Unix shell script: Inject text when “text pattern” is found
Say I have two files:
- data.txt
- report.txt
The report contains a text with some "placeholders", example:
HPLC results for sample: <insert-sample-id-here>, elements analyzed: ...
5
votes
2answers
104 views
breaking from infinite loop
I'm running this query in bash:
mkfifo resp
while true; do
sudo nc -l -p 80 < resp |
(cat & echo -e "HTTP/1.1 200 OK\r\n\r\nhello :)" > resp) ||
break;
done
However when I ...
0
votes
3answers
83 views
csh shell: Numerical operations with variable from file
I am currently writing a csh shell skript and want to compare numbers that are stored in a file. There is only one number stored in this file e.g. -3.675000e+05 or 0.000000e+00
The problem is, that I ...
1
vote
4answers
29 views
Looping through and modifying a list in unix
I am trying to take the contents of a list list1 and loop through them comparing them to another list generated by finger. When a name from list1 is found in finger it should be removed from list1.
...
3
votes
2answers
69 views
How to move and number files?
I working with linux, bash.
I have one directory with 100 folders in it, each one named different.
In each of these 100 folders, there is a file called first.bars (so I have 100 files named ...
-1
votes
5answers
161 views
How to display the first word of each line in my file using the linux commands?
I have a file containing many lines. and I want to display only the first word of each line with the linux commands.
How to do it ?
0
votes
0answers
7 views
How does man.cgi deal with cat vs. mdoc man pages?
I want to start a site with a collection of BSD man-pages, similar to man.cgi, but static HTML, and which includes all the stuff from the ports trees, too.
I've tried unpacking man/ from all the ...
2
votes
1answer
132 views
Ignoring variables in shell script while using cat>file.sh<<EOF … EOF syntax
I have a question regarding embedding script files within a shell script. I often have a need to create a single shell script that unpacks other scripts, but really dislike having to comment out all ...
1
vote
2answers
46 views
What is the most efficient way to concatenate files of different compression types in a bash script?
I have come across this need several times now and I am surprised how hard it has been for me to find a "best" method for concatenating files of different compression types.
For instance, I have a ...
1
vote
2answers
98 views
A good cat.c implementation to look, learn and edit?
If I want a program like cat that I can take, practice and learn from as a good example, can I take this file or would any other source be preferred? Ideally the same cat.c would run on linux, solaris ...
0
votes
1answer
66 views
Format output of multiple bash commands into columns
What I want to do is simple enough, but I cannot get it done without several commands. This is what it looks like so far. I'd love to be able to do this in one sloppy looking line that just passes all ...
0
votes
1answer
109 views
C concatenate options to CAT program ??
As the title suggests I have to make a program to emulate the CAT commands, so far I have got basic input and output working however I need now include options such as -n.....
while((rd = getchar()) ...
4
votes
4answers
115 views
bash for loop with numerated names
I'm currently working on a maths project and just run into a bit of a brick wall with programming in bash.
Currently I have a directory containing 800 texts files, and what I want to do is run a ...
0
votes
1answer
672 views
Howto merge two avi files using ffmpeg?
I'm unable to merge two avi videos together.
google is full of below examples:
cat file1.avi file2.avi file3.avi > video_draft.avi
after appending the data together using cat above, you need to ...
2
votes
1answer
58 views
cat terminal , check usb removed (perror)?
For an assignment we have to create C program that functions similar to the cat command. The first hand-in requires it to mimic very minimal operations of cat....i.e print to output, redirect. The ...
1
vote
2answers
118 views
Unix cat and tail for output of java program
I have a java program that takes time to execute and I have to make 10 runs of it and I am interested in only last 5 lines of the output, the actual output runs in hundreds of lines. Since I want to ...
0
votes
1answer
48 views
Bash Merge 2 files conditionally
I'm trying to merge the second field of the csv with all the id's in the diff file. codes.csv has 2 fields: ID,Description. I keep getting an error on the second cat.
cat: codes.cvs: No such file or ...







