using cksum


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting using cksum
# 1  
Old 05-31-2007
using cksum

hi,

I am trying to use the cksum feature in unix. when i make a call to it i get returned something along the lines of:

4603435 14 file3

how do i get the first part of this response only; i.e:

4603435

I'm trying to use at a way without the use of sed and creating temp files. The manual doesn't seem to allow for picking out fields. If this isnt possible, the next simplest solution would be useful.

Thanks for your time

Lee
# 2  
Old 05-31-2007
I often use functions in shell scripts to do this such as

Code:
first()
{
    echo $1
}

so if you do

A=`first one two three`

then A will be one.
# 3  
Old 05-31-2007
i'm not sure i follow, how can i apply this to the cksum command?
# 4  
Old 05-31-2007
Code:
#!/bin/sh

first()
{
   echo $1
}

for d in $@
do
     first `cksum $d`
done

# 5  
Old 05-31-2007
Quote:
Originally Posted by leeRoberts2007

how do i get the first part of this response only; i.e:

4603435
Code:
cksum file | awk '{print $1}'

Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Solaris

ZFS - CKSUM errors only

Hi I have 2 ZFS filesystems (Sun M3000 server connected to Clariion external storage vie 2 X HBA's) - ZFS filesytems (1 X mirror - 100GB X2) and the 2nd ZFS is 2 concatenated disks - 100GB + 50GB. Both ZPOOLS are reporting CKSUM errors only - no READ or WRITE errors. I have cleared the... (5 Replies)
Discussion started by: samruthroy
5 Replies

2. UNIX for Dummies Questions & Answers

cksum does not give me crc32

Is cksum the right command to calculate the crc32 checksum value? I tried it for a number of files now and every time the results dont match. So there is nothing wrong with the file. Also, cksum gives me an all numerical value while crc32 is alpha numeric. What am I doing wrong? Thanks (9 Replies)
Discussion started by: utamav
9 Replies

3. Shell Programming and Scripting

EEPROM CKSUM? what is this?

Hi all, So I have a binary file and I need to generate an expected EEPROM checksum for it. Ideally, I would like to input the file (with the path) and output a computed checksum. Ive been using (cksum file1) with no avail and I was just curious as to whether there is such thing as EEPROM cksum,... (1 Reply)
Discussion started by: TeamUSA
1 Replies

4. UNIX for Dummies Questions & Answers

EEPROM CKSUM - Is there such thing?

Hi all, So I have a binary file and I need to generate an expected EEPROM checksum for it. Ideally, I would like to input the file (with the path) and output a computed checksum. Ive been using (cksum file1) with no avail and I was just curious as to whether there is such thing as EEPROM... (1 Reply)
Discussion started by: TeamUSA
1 Replies

5. UNIX for Advanced & Expert Users

Cksum dependencies

Hi, On what factors does the cksum depend. If i build 2 machines exactly the same, then can i get the checksum of 2 compiled files same. Thanks (3 Replies)
Discussion started by: vibhor_agarwali
3 Replies

6. Shell Programming and Scripting

The cksum Problem

Hi, I have a working script, well it works on my machine but when I try it on others the cksum section does not work properly (I know the scripting is not of a high quality but I'm just trying to get it working) Heres the script: #!/bin/sh case $# in 0) echo "usage: enshar filename... (7 Replies)
Discussion started by: Dim-Wit
7 Replies

7. Shell Programming and Scripting

cksum question

Hi there, I have a query about cksum. I'm running a script on the Unix box and in a script the cksum result differs from when I run it manually. As far as I can see the file is not being changed, is there any other times that the cksum would be different. (4 Replies)
Discussion started by: rjsha1
4 Replies

8. Shell Programming and Scripting

Anyone know how cksum works?

hello all. I'm not asking about the algorithm - or how it goes about computing the checksum - I'm asking how it views/looks at the files it does the cksum on. For instance: Say you had a directory named "dir_A" And within this directory you had some files. So: dir_A - file1 -... (5 Replies)
Discussion started by: kapolani
5 Replies

9. UNIX for Dummies Questions & Answers

cksum all executables on drive

I know I can run the cksum command for multiple files in a directory and send the results to a new file. EX.) # cd /usr # cksum *_ex* > /tmp/cksumusr.txt But I can't figure out how to run this command on multiple files in all directories on drive. Is it possible to do this, without having... (2 Replies)
Discussion started by: crazykelso
2 Replies
Login or Register to Ask a Question