Sponsored Content
Full Discussion: Assign value to variable
Top Forums UNIX for Beginners Questions & Answers Assign value to variable Post 303037516 by Master_Mind on Sunday 4th of August 2019 12:16:38 AM
Old 08-04-2019
Assign value to variable

Hi Guys,

I need to assign the value of which has rows to a variable, Can you advise how to do that

Code:
hive --orcfiledump /hdfs_path/ | grep  "Rows"
Rows: 131554

I need to assign this row count itself to a unix variable
Code:
count=$(hive --orcfiledump /hdfs_path/ | grep  "Rows")

Expected
count=131554

Even if i find multiple values like Rows:131554 Rows:131554 , I need to assign only one value to count varaible
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

assign to variable

why i can't use this command: echo $arg | cut -c 1,2 | read remainArg or echo $arg | cut -c 1,2 | read $remainArg so that the result will be assign to remainArg. Anyway to do this? :) (1 Reply)
Discussion started by: AkumaTay
1 Replies

2. Shell Programming and Scripting

assign a value to variable

I have to assign a result of a query to a vairable like this how can i do this Query = select count(*) from table x=`db2 ${Query}| sed -n '4p'` but this doesn't work, is there any other way to assign the result without redirecting the result to temp file. . Thanks Mark. (3 Replies)
Discussion started by: markjason
3 Replies

3. Shell Programming and Scripting

assign a value to a variable

I have a list of names in a file. i want to assign those names to a variable in such a manner eg: $cat file.txt pete lisa john var=pete-lisa-john how do i do this in shell scripting? (10 Replies)
Discussion started by: Shivdatta
10 Replies

4. Shell Programming and Scripting

Not able to assign a value to variable

Hi Experts, I am facing some problem while developing the script.My input config.csv file contains the three columns namely pathname,filename,filetype.Based on the file type i have to use ftp command that is if filetype=csv then do ftp. The input file is cat config.csv... (13 Replies)
Discussion started by: Amey Joshi
13 Replies

5. Shell Programming and Scripting

Assign this to a variable....

bash-3.00$ /usr/bin/netstat -an -f inet | awk -F' ' '{if ($1$4 == "tcp*.21")print $5}' *.* bash-3.00$ A=` /usr/bin/netstat -an -f inet | awk -F' ' '{if ($1$4 == "tcp*.21")print $5}'` bash-3.00$ echo $A db2_lastdone.bkp As you can see ,after running command i get *.* in return but the same... (5 Replies)
Discussion started by: ak835
5 Replies

6. Shell Programming and Scripting

assign awk's variable to shell script's variable?

Dear All, we have a command output which looks like : Total 200 queues in 30000 Kbytes and we're going to get "200" and "30000" for further process. currently, i'm using : numA=echo $OUTPUT | awk '{print $2}' numB=echo $OUTPUT | awk '{print $5}' my question is : can I use just one... (4 Replies)
Discussion started by: tiger2000
4 Replies

7. Shell Programming and Scripting

Shell assign variable to another variable

How can I assign a variable to an variable. IE $car=honda One way I can do it is export $car=honda or let $car=2323 Is there any other ways to preform this task (3 Replies)
Discussion started by: 3junior
3 Replies

8. Shell Programming and Scripting

Assign a variable with awk

I launch 'netstat -a', if string 'ESTABLISHED' found, then VAR=1 #!/bin/bash VAR=0; netstat -a | awk '$6 ~ /ESTABLISHED/ {VAR=1}' I cannot find the right syntax. thanx guys! (3 Replies)
Discussion started by: arpagon
3 Replies

9. UNIX for Beginners Questions & Answers

Need to pass variable in a command and assign value to a variable

Hello All, Hope you're doing well ! I am trying below command to be passed in a shell script, header_date_14 is a variable and $1 is the name of a file I intend to pass as a command line argument, however command line argument is not being accepted. header_date_14=$(m_dump... (8 Replies)
Discussion started by: ektubbe
8 Replies

10. UNIX for Beginners Questions & Answers

How can I assign awk's variable to shell script's variable?

I have the following script, and I want to assign the output ($10 and $5) from awk to N and L: grdinfo data.grd | awk '{print $10,$5}'| read N L output from gridinfo data.grd is: data.grd 50 100 41 82 -2796 6944 0.016 0.016 3001 2461. where N and L is suppose to be 3001 and 100. I use... (8 Replies)
Discussion started by: geomarine
8 Replies
DCKEY(1)					       DICOM PS3 - Extract attribute values						  DCKEY(1)

NAME
dckey - ACR/NEMA DICOM PS3 ... Extract attribute values SYNOPSIS
dckey [ -ignorereaderrors ] [ -v|verbose ] [ -filename ] [ -describe ] [ -brief ] [ -d|decimal ] [ -key|k elementname|(0xgggg,0xeeee) ] ... DESCRIPTION
dckey reads the named dicom input file and displays the values of the selected attributes. Binary attributes are written in hexadecimal with a preceding "0x" and numeric string attributes are written in decimal as they are encoded, unless the -decimal option is specified. OPTIONS
The attribute values, description and verbose output go to standard error. The basic input switches are described in dcintro(1). Options specific to this program are: -describe Display the tag, name, value representation and value length of the attribute. -brief Display the keyword of the attribute, and equals sign, and then the value, for use in scripts that automatically extract multiple values in the same dckey invocation. Implies -noerror. -ignorereaderrors Attempt to extract key values even if errors encountered whilst parsing DICOM file. -noerror Do not report an error if the requested attribute was not found, just an empty value or line. Implied by -brief. -d|decimal Display the first (or only) value of a numeric attribute as a decimal value. -k|key elementname|(0xgggg,0xeeee) Add a key to the list of attributes to be extracted. The attribute may also be specified as a hexadecimal pair of the form (0xgggg,0xeeee), which also allows private attributes to be fetched. -filename Show the name of the file supplied in the arguments; a hyphen will be reported if no filename was supplied. ENVIRONMENT
EXAMPLES
% dckey -key Rows -key Columns -key ImageLocation -describe test.dc3 (0x0028,0x0010) US Rows VR=<US> VL=<0x0002> [0x0100] (0x0028,0x0011) US Columns VR=<US> VL=<0x0002> [0x0100] Error - Not found - (0x0028,0x0200) US Image Location % dckey -k Rows -k ImagePositionPatient -k StudyDate -k StudyTime -k SOPClassUID test.dc3 1.2.840.10008.5.1.4.1.1.2 1996.04.17 19:38:00 45.000000-120.000000120.000000 0x0200 % dckey -d -k Rows test.dc3 512 % dckey -brief -k Rows -k Columns test.dc3 Rows=0x200 Columns=0x200 FILES
SEE ALSO
dcintro(1),dctable(1) AUTHOR
Copyright (C) 1993-2010. David A. Clunie DBA PixelMed Publishing. All rights reserved. BUGS
Attempts to extract sequences or OB,OW attributes may fail nastily. The order in which the attributes are extracted and written is not the same order as they are specified on the command line, and should not be depended on. The -describe and other options cannot be used at the same time. The -decimal option uses a double conversion before displaying the value and there may be sign extension and precision issues with some values. The reading of the attributes from the DICOM file will not proceed past the top level Pixel Data attribute, in order to accelerate the speed of reading. DICOM PS3 19 November 2008 DCKEY(1)
All times are GMT -4. The time now is 09:55 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy