Sponsored Content
Full Discussion: echo/print variable question
Top Forums Shell Programming and Scripting echo/print variable question Post 302450426 by jim mcnamara on Thursday 2nd of September 2010 03:05:46 PM
Old 09-02-2010
Code:
while read filer ; 
do 
   echo $filer $1 $2; 
   ssh $filer vfiler status -r | 
            awk -v filer="$filer"  '/running/{host=$1}/Path:/{path=$2;print filer,host,path}'; 

done < filers.list

 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

echo or print to screen and file

I did a search for this topic but I couldn't find it and I was sure I have seen something similar before (hard because I am not sure of the criteria for the keywords) What I was looking for was to be able to echo a message to the screen from a bash.sh script at the same time logging it to a... (2 Replies)
Discussion started by: Shakey21
2 Replies

2. UNIX for Dummies Questions & Answers

echo vs. print

Is there a functional difference between echo and print? (1 Reply)
Discussion started by: PhilW
1 Replies

3. Shell Programming and Scripting

Differenc between print and echo

can anyone explain me what is the difference between echo and print in shell programming? (3 Replies)
Discussion started by: chandhar
3 Replies

4. Shell Programming and Scripting

how to print backslah using echo

how to print 3 backslah using Unix AIX, i have try in my fedora and AIX,both give dirrent output for same echo statment test.sh sed -e 's/\(\)/\\\1/g' -e 's/\$?/\\$?/g' -e 's/\$#/\\$#/g' -e 's/^/echo "/g' -e 's/$/ "/g' xMNBDF070 > xMNBDF070_test xMNBDF070 sed -e "s/'/\\\'/g" -e... (8 Replies)
Discussion started by: mani_um
8 Replies

5. Shell Programming and Scripting

Using echo to print double quotes along with variable substitution

Hi, I am generating html code using cshell, but i am having one problem while printing double quotes, I need to write following code in file. where $var contains list of web address <a href="$var">$var</a> So i am using echo "<a href="$var">$var</a>" > file.html But with this " in... (4 Replies)
Discussion started by: sarbjit
4 Replies

6. Shell Programming and Scripting

With that logic this echoes "echo". Question about echo!

echo `echo ` doesn't echoes anything. And it's logic. But echo `echo `echo ` ` does echoes "echo". What's the logic of it? the `echo `echo ` inside of the whole (first) echo, echoes nothing, so the first echo have to echo nothing but echoes "echo" (too much echoing :P):o (2 Replies)
Discussion started by: hakermania
2 Replies

7. Shell Programming and Scripting

"Simple" echo/reading variable question...

Hello, I have a simple(I think) question! Although simple, I have been unable to resolve it, so I hope someone can help! OK, here it is: 1)I have an awk script that prints something, such as: awk '{print $2}' a > x so x might hold the value of say '10' 2)Now, I just want to check to see if... (4 Replies)
Discussion started by: astropi
4 Replies

8. Shell Programming and Scripting

Print (echo) variable in a single line

Hi, I have written this code ------------------------------------------------ # !/bin/ksh i=0 while do j=$i while do echo -e $j #printf "%d",$j j=`expr $j - 1` done echo i=`expr $i + 1` done ---------------------------------------------------- The ouput which... (2 Replies)
Discussion started by: rac
2 Replies

9. Shell Programming and Scripting

Replacing echo with print

Hi everyone, I'm executing a shell script and one of the commands is creating a file with text via echo. However, if the text within echo has "\t" or similar, it automatically translates it into a TAB character, same goes for other special characters. I know that if I put another "\"... (7 Replies)
Discussion started by: demmel
7 Replies

10. Shell Programming and Scripting

Echo print on same line while loop using variable

Currently using below script but echo it print the output in two line. Input file all-vm-final-2.txt CEALA08893 SDDC_SCUN DS_SIO_Workload_SAPUI_UAT_01 4 CEALA09546 SDDC_SCUN DS-SIO-PD5_Workload_UAT_SP1_Flash_07 4 CEALA09702 SDDC_SCUN DS-VSAN-RMP-WORKLOAD01 4 DEALA08762 SDDC_LDC... (3 Replies)
Discussion started by: ranjancom2000
3 Replies
NetApp::Qtree(3pm)					User Contributed Perl Documentation					NetApp::Qtree(3pm)

NAME
NetApp::Qtree -- OO class for creating and managing qtrees SYNOPSIS
use NetApp::Filer; use NetApp::Qtree; my $filer = NetApp::Filer->new( .... ); # Create a tree, with all options in one call my $qtree = $filer->create_qtree( name => "/vol/vol1/qtreename", oplocks => 1, mode => 0755, security => 'unix', ); # Alternately, you can create it, and then change things my $qtree = $filer->create_qtree( name => "/vol/vol1/qtreename", mode => 0755, ); # The mode must be set when created $qtree->set_oplock(1); $qtree->set_security('unix'); DESCRIPTION
This class encapsulates a single NetApp qtree, and provides methods for querying information about the qtree, as well as methods for managing it. METHODS
set_security( $security ) This method method takes a single argument, which is the security value to set on the qtree. It must have one of the following values: unix ntfs mixed get_security Returns a string containing the current security setting of the qtree. set_oplocks( $boolean ) This method takes a boolean argument, and sets the oplocks attribute of the qtree to "enabled" if the value is true, and "disabled" if the value is false. get_oplocks Returns true is the oplocks are set to "enabled", false if they are set to "disabled". get_status Returns the status value for the qtree. It waill have the values such as: normal snapmirrored get_id Returns the qtree id. get_vfiler Returns the vfiler which owns the qtree. If vfilers are not licensed on the filer, this method will simply return a false value. perl v5.14.2 2008-11-26 NetApp::Qtree(3pm)
All times are GMT -4. The time now is 07:59 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy