cat
Today’s modular x86 servers are compute-centric, designed as a least common denominator to support a wide range of IT workloads. Those generic, virtualized IT workloads have much different resource optimization requirements than hyperscale and cloud applications. They have resulted in a “one size fits all” enterprise IT architecture that is not optimized for a specific set of IT workloads, and especially not emerging hyperscale workloads, such as web applications, big data, and object storage. In this report, you will learn how shifting the focus from traditional compute-centric IT architectures to an innovative disaggregated fabric-based architecture can optimize and scale your data center.
Sponsored by AMD
Built-in forensics, incident response, and security with Red Hat Enterprise Linux 6
Every security policy provides guidance and requirements for ensuring adequate protection of information and data, as well as high-level technical and administrative security requirements for a system in a given environment. Traditionally, providing security for a system focuses on the confidentiality of the information on it. However, protecting the data integrity and system and data availability is just as important. For example, when processing United States intelligence information, there are three attributes that require protection: confidentiality, integrity, and availability.
Learn more about catching the bad guy in this free white paper.
Sponsored by DLT Solutions
| Making Linux and Android Get Along (It's Not as Hard as It Sounds) | May 16, 2013 |
| Drupal Is a Framework: Why Everyone Needs to Understand This | May 15, 2013 |
| Home, My Backup Data Center | May 13, 2013 |
| Non-Linux FOSS: Seashore | May 10, 2013 |
| Trying to Tame the Tablet | May 08, 2013 |
| Dart: a New Web Programming Experience | May 07, 2013 |
- RSS Feeds
- New Products
- Making Linux and Android Get Along (It's Not as Hard as It Sounds)
- A Topic for Discussion - Open Source Feature-Richness?
- Drupal Is a Framework: Why Everyone Needs to Understand This
- Home, My Backup Data Center
- New Products
- Developer Poll
- Trying to Tame the Tablet
- Python Programming for Beginners
- Hey God - You may not be
3 hours 47 min ago - Reply to comment | Linux Journal
6 hours 20 min ago - Drupal is an Awesome CMS and a Crappy development framework
10 hours 59 min ago - IT industry leaders
13 hours 21 min ago - Reply to comment | Linux Journal
1 day 6 hours ago - Reply to comment | Linux Journal
1 day 8 hours ago - Reply to comment | Linux Journal
1 day 10 hours ago - great post
1 day 10 hours ago - Google Docs
1 day 10 hours ago - Reply to comment | Linux Journal
1 day 15 hours ago
Enter to Win an Adafruit Prototyping Pi Plate Kit for Raspberry Pi

It's Raspberry Pi month at Linux Journal. Each week in May, Adafruit will be giving away a Pi-related prize to a lucky, randomly drawn LJ reader. Winners will be announced weekly.
Fill out the fields below to enter to win this week's prize-- a Prototyping Pi Plate Kit for Raspberry Pi.
Congratulations to our winners so far:
- 5-8-13, Pi Starter Pack: Jack Davis
- 5-15-13, Pi Model B 512MB RAM: Patrick Dunn
- Next winner announced on 5-21-13!
Free Webinar: Linux Backup and Recovery
Most companies incorporate backup procedures for critical data, which can be restored quickly if a loss occurs. However, fewer companies are prepared for catastrophic system failures, in which they lose all data, the entire operating system, applications, settings, patches and more, reducing their system(s) to “bare metal.” After all, before data can be restored to a system, there must be a system to restore it to.
In this one hour webinar, learn how to enhance your existing backup strategies for better disaster recovery preparedness using Storix System Backup Administrator (SBAdmin), a highly flexible bare-metal recovery solution for UNIX and Linux systems.




Comments
Good info
Hello! dbdegdd interesting dbdegdd site!
cat command for several grib files
I have many grib files (starting from ecmwf19860101.grb to ecmwf20090101.grb). These are basically daily files and the total number of files is nearly 30000 and I want to cat them into one file. When I use the command:
cat ecmwf*>ecmwf.grb
-bash: /bin/cat: Argument list too long
Why its not working on large number of files?
Is there any limit of using "cat" command?
Although I used above command for some of the files and it works.
Please advise me if it is possible to cat large number of grib files?
Thanks in advance.
Regards,
Mubashar
Problem in unix scripting
Hi , i am facing the problem in unix shell scripting.
not able to execute.
giving the error
./test: line 2: if[0 != 2]: command not found
./test: line 3: syntax error near unexpected token `then'
./test: line 3: `then'
Please help ASAP
Regards,
Lakshmi
White space
You're missing some needed whitespace:
- Between the "if" keyword and the "[" command.
- After the "[" command.
- Before the "]" argument to the "[" command.
- After the echo commands and their arguments.
It's also considered "good" practice, but not mandatory, to indent the commands within an "if" statement:
#!/bin/sh if [ $# -ne 2 ] then echo "Numbers not supplied" echo "Usage $0 number1 number2" exit 1 fi echo "the sume is `expr $1 + $2`"Mitch Frazier is an Associate Editor for Linux Journal.
1997...?
1997? Is this correct?
The time stamp of the posting says: "October 1st, 1997 by Patrick Hill"
That's only... 12 years ago! :x
No, I just posted this in
No, I just posted this in September of 2009
Using Cat
Hi,
I have used the cat command to put the contents of a large number of files into one large file. So I have each files contents in this large file without a blank line between the files. How can I add the filename before the contents of the file and a blank line between the files in my large output file?
Using Cat
OK, I have all the filenames showing before the contents and with a carriage return after the filename. I just need to know how to add a carriage return after each files contents. Here is the code.
#!/bin/sh
# no error checking
rm -f newfile
for i in *.spc;
do printf "%s\n" $i >> newfile
cat "$i" >> newfile
done
To print specific range of lines using cat
Hello Patrick,
I am using AIX Unix. How is it possible to select lines to be printed using cat ? If the file size is very big and say it has more than thousand lines and i want to print lines 65 to 70 on standard output.
Regards,
Immi.
To print specific lines using cat and sed commands
Hello Immi.
You can pipe the output of cat command to sed command as follows.
cat filename |sed -n '65,70p'
This will print lines 65 to 70 on standard output.
If you want to print only one line, you can use the following syntax.
cat filename |sed -n '5p'
This will print only line 50 of the file on standard output.
Sorry for the mistake.
Sorry for the mistake.
please read the last line of the my commend corrected as "...line 5 of the file...."
Re: Take Command: cat
Good examples. Something puzzles me though. I am taking a Unix class using Solaris 2.8 on Sun workstations, but I do my practicing on a PC with Linux (RedHat 8). In Unix you can create a new file with:
cat fileName
blah blah
Ctrl-D
But with Linux this produces a "no such file" error, so you must explicitely redirect the output with:
cat > fileName ...
I have tried it with all of the shells installed and get the same. I wonder why the difference?
Re: Take Command: cat
i am very thankful for the detailed information
of the cat command. many of the linux sites
are not having the basic information of cat
command which is must. i pity the negligence
attributed by the linux site maintainers.
any how i am thankful for the detailed and
friendly information.
thanking you