cut output on solaris9 and redhat


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers cut output on solaris9 and redhat
# 1  
Old 05-25-2009
cut output on solaris9 and redhat

Hello,

A file called test2 contains passwd entries from various servers.

- On solaris9 host :

Code:
> cat test1 | cut -d ":" -f3 | wc -l
   18229

- The same file copied with scp to a redhat host (same cksum) :

Code:
$ cat test1 | cut -d ":" -f3 | wc -l
39411

- A perl script running on the redhat host and connecting with ssh to the solaris9 host :

Code:
#!/usr/bin/perl
use strict;
use Net::SSH::Perl;
use Math::BigInt::GMP;
my $ssh = Net::SSH::Perl->new("the_solaris9_host");
$ssh->login("root","");
my $cmd = "cat /tmp/test1 | cut -d \":\" -f3 | wc -l";
my($output, $error, $exit) = $ssh->cmd($cmd);
print "$output\n";

Code:
$ ./test.pl
   39411

Can somebody explain why this BIG difference in the "cut" output on solaris9 and redhat?

Why is the perl script, supposed to send the command as is on the solaris host, gives a different output then the same command direcly from ssh on terminal?

I definitively missed something and need some expert help please.

Thanks a lot.

Peter
# 2  
Old 05-25-2009
I don't have a direct answer. Check the Sun host for the paths for cut. You can try:

type -a cut

or

which cut

It could be that somehow the Perl-ssh uses a different path than the interactive login does.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Assinging output of cut command

Hi, I have the files in the following files in a folder 19996587342 19487656550 19534838736 And i need to get the first 6 characters from the abvoe files so i used the following script #!/bin/ksh for i in 19* do txt= `$i | cut -c -6` echo "$txt" done The error is at... (4 Replies)
Discussion started by: smile689
4 Replies

2. Shell Programming and Scripting

Cut an output

Hi everyone, happy new year I have the following output: 2503 nteath 20 0 4892 312 2503 nteath 20 0 5872 312 2503 nteath 20 0 6852 312 2503 nteath 20 0 7832 312 2503 nteath 20 0 8812 312 2503 nteath 20 0 9792 312 2503 nteath 20... (3 Replies)
Discussion started by: nteath
3 Replies

3. Solaris

Send cut output to basename

Hi, I'm running a command : pargs 20392 | egrep -e "-f "|cut -d " " -f3 | basename BUT the o/p of cut is not sending to basename. the o/p of: pargs 20392 | egrep -e "-f "|cut -d " " -f3 is /home/staff/Properties.cfg Appreciated ur help.. (2 Replies)
Discussion started by: axes
2 Replies

4. Shell Programming and Scripting

ksh + isql => output cut at 2 GB

Using a ksh script, I'm dumping the data from our sybase database into an output file. This output file is for what ever reason cut at 2GB. There is enough space on the unix machine and as there is no error message is received I have no clue to start looking for a solution. #!... (1 Reply)
Discussion started by: bereman
1 Replies

5. UNIX for Dummies Questions & Answers

Cut an sql script output

Hi i want to cut the first field of this output obtained form sql script more dxlocks_test.log.1 SID SERIAL# SPID ---------- ---------- --------- 25 18356 1029 78 39370 1025 136 14361 1027 ================================ cut -f1... (2 Replies)
Discussion started by: aishwaryakala
2 Replies

6. Shell Programming and Scripting

how to cut from output

Hi How do i cut from this output so i only get db name ps -ef |grep smon oracle 29375 1 0 Nov 9 ? 8:08 ora_smon_HWEX62 i.e only want HWEX62 also bearling in mind that some database have been running from hours and some servers have different time and date formats... (7 Replies)
Discussion started by: eb222
7 Replies

7. Shell Programming and Scripting

how to cut off last column from the output

I have a problem with my script. I am using following code awk -F"," '{print $0,",",substr($2,3,3)}' $REG_InputFileName > $TargetSeqPath/Master.tmp while read i do echo $i > $TargetSeqPath/Ref.tmp OutFileName=`awk -F"," '{print $3}' $TargetSeqPath/Ref.tmp` rm -f... (9 Replies)
Discussion started by: manmeet
9 Replies

8. Shell Programming and Scripting

cut - columns with formatted Output

Hi I have the input file as below ***TEST10067 00567GROSZ 099 00567CTCTSDS90 ***TEST20081 08233GROZWEWE 00782GWERW899 ***TEST30088 08233GROZWEWE 00782GWERW899 I am finding the lines starting with *** and outputing as below TEST10067 TEST20081 TEST30088 I need a space between TEST1... (9 Replies)
Discussion started by: dhanamurthy
9 Replies

9. Shell Programming and Scripting

Cut output to same byte position

Hi folks I have a file with thousands of lines with fixed length fields: sample (assume x is a blank space) 111333xx444TTTLKOPxxxxxxxxx I need to make a copy of this file but with only some of the field positions, for example I'd like to copy the sample to the follwing: so I'd like to... (13 Replies)
Discussion started by: HealthyGuy
13 Replies

10. UNIX for Dummies Questions & Answers

How can I cut output of command??

I am on a Linux system using bash shell. I only want to see the number in the Use% field as the output. #df -h / Filesystem Size Used Avail Use% Mounted on /dev/dasda1 2.3G 2.1G 51M 98% / !#/bin/bash df -h / | awk '{print $5}' | cut -c1-2 Us 98 How do... (2 Replies)
Discussion started by: darthur
2 Replies
Login or Register to Ask a Question