Sponsored Content
Full Discussion: Reference Variable
Top Forums Shell Programming and Scripting Reference Variable Post 302138547 by radoulov on Tuesday 2nd of October 2007 09:38:55 AM
Old 10-02-2007
Code:
zsh 4.3.4% cat script 
#!/bin/zsh 
select color in  Red Green White;do
        case $color in
                Red)code='#FF0000';break;;
                Green)code='#00FF00';break;;
                White)code='#FFFFFF';break;;
        esac
done

print -l "You choose: $color, the code is $code" 
zsh 4.3.4% ./script 
1) Red    2) Green  3) White  
?# 2
You choose: Green, the code is #00FF00

 

9 More Discussions You Might Find Interesting

1. HP-UX

Reference Material

I'm having to write 'C' programs for a group of HP-UX 11.X systems. While I have found many 'C' reference books which I like, none of them reference using 'C' in the UNIX environment. Anyone have any good recommendations for books about 'C' programming under UNIX? Thanks. Chris (0 Replies)
Discussion started by: chrisc@nwark.ne
0 Replies

2. Shell Programming and Scripting

How to reference a variable within sed?

Hi all, How can I use sed to perform a substitution if the string that I'm going to substitute is stored in a variable: Let's say: sed 's/abcdefg/good' VS tmp="abcdefg" sed 's/$tmp/good' The second case doesn't work. Guess it's due to the single quotes on the outside. How can I... (1 Reply)
Discussion started by: rockysfr
1 Replies

3. Shell Programming and Scripting

Unix Variable Reference and Substitution

I can't seem to make what appears to be a simple substitution. I want to define a list of systems for which daily reports need to be filed systems="systemA systemC systemZ" I then want to run a loop for i in ${systems} Analyze statistics Create the reports mailx (8 Replies)
Discussion started by: mugsymark
8 Replies

4. Shell Programming and Scripting

subsequently reference variable

Hello, This is not homework. It is a question that I received on a recent interview for a linux position. Can someone shed some light on the right answer? I got it wrong. Thanks, jaysunn (3 Replies)
Discussion started by: jaysunn
3 Replies

5. Shell Programming and Scripting

BASH - Reference external variable name dynamically

Hi there, I have included an external properties file into my BASH script via the 'source' command. I am attempting to dynamically assign a variable in the BASH script, that references the variable name within the external properties file i.e. #!/bin/bash pth=${0%/*} source... (3 Replies)
Discussion started by: mjwoodford
3 Replies

6. Homework & Coursework Questions

undefined reference help

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: i know when undefined reference shows up the program is saying it is not link to that function but the problem... (1 Reply)
Discussion started by: mgyeah
1 Replies

7. Shell Programming and Scripting

Perl: accessing reference to variable inside hash.

Below is hash which contains reference to variables: my %mandatoryFields = ( 1 => \$msgtype, 2 => \$switchtype, 3 => \$card_nbr, 4 => \$natv_tran_type_code, 5 => \$amt_1 ); This... (0 Replies)
Discussion started by: som.nitk
0 Replies

8. Shell Programming and Scripting

Perl de-reference code reference variable

Guys, May i know how can we de reference the code reference variable.? my $a = sub{$a=shift;$b=shift;print "SUM:",($a+$b),"\n";}; print $a->(4,5); How can we print the whole function ? Please suggest me regarding this. Thanks for your time :) Cheers, Ranga :) (0 Replies)
Discussion started by: rangarasan
0 Replies

9. Shell Programming and Scripting

Get last reference date

Hi, Could you please help me to get last reference date in Unix, in Unix we maintain SAS7BDAT files. Is there any command or script to get the info, Thank you. (2 Replies)
Discussion started by: subbarao12
2 Replies
x52output(1)						      General Commands Manual						      x52output(1)

NAME
x52output - command line frontend for the x52pro library SYNOPSIS
x52output text 0 'First Line' x52output text 1 'Second Line' x52output text 2 'Third Line' x52output bri 0 40 x52output bri 1 50 x52output led 1 1 # not available for old X52 x52output time 1 12 20 x52output date 7 10 17 x52output second 30 # YOKE only x52output offset 0 1 0 90 # set 90 minutes offset on time display 2 DESCRIPTION
x52output is a command line frontend for the x52pro MFD library. It is intended for debugging and/or scripting purposes. The x52pro MFD library provides access to the display/LEDS of following SAITEK pro flight devices o X52 Pro Flight Control System o X52 Flight Control System o X52 Pro Flight Yoke. x52output has following sub-commands: text line text Outputs a single line of text to one of the three lines on the x52/x52pro MFD. line is a number from 0 to 2, text is an alphanumeric text of length 16. Some graphical characters are also supported but no work has currently been spent on charset compatibility. bri mfd brightness Sets the brightness of either the button LEDs (x52pro only) or the MFD. mfd=0 selects the buttons and mfd=1 selects the MFD. brightness is a decimal value in the range from 0 to 127. led led-idx color Sets the led color of one of the x52pro buttons. led-idx is a value from 1 to 19. The meaning of the led-idx values are specified in the next paragraph. time h24 hour minute Sets the time shown on the MFD. h24=0 displays the time in AM/PM notation, h24=1 displays the time in 24 Hour notation. hour is a value from 0 to 24 while minute is a value from 0 to 60. date year month mday Sets the date shown on the MFD. year, month, and mday are just values from 0 to 99. Using this order will show as YY-MM-DD on the MFD but it is possible to use the three values in any order preferred. second second Sets the second value shown on the Pro Flight Yoke MFD. Can be a value from 0 to 59. offset offset Sets the time offset of the secondary and tertiary time display of the x52/x52pro MFD. idx=0 selects the secondary display while idx=1 selects the tertiary display. neg=0 sets a positive offset, neg=1 sets a negative offset. offset is in minutes from 0 to 1023. led-idx for the led sub-command can be one of the following values: 1 LED(s) of Fire Button 2 Red LED of A Button 3 Green LED of A Button 4 Red LED of B Button 5 Green LED of B Button 6 Red LED of D Button 7 Green LED of D Button 8 Red LED of E Button 9 Green LED of E Button 10 Red LED of T1 Switch 11 Green LED of T1 Switch 12 Red LED of T2 Switch 13 Green LED of T2 Switch 14 Red LED of T3 Switch 15 Green LED of T3 Switch 16 Red LED of Coolie Hat 17 Green LED of Coolie Hat 18 Red LED of i Button 19 Green LED of i Button x52output needs write access to the raw x52 USB device. This package is supplied with udev rules for providing write access on the SAITEK MFD joysticks to the plugdev group members. If x52output fails, permission problems can be checked by means of running it with sudo. EXIT STATUS
If the joystick/yoke is not found x52output will return a status code of 1. In every other situation it will return a status code of 0. This includes malformed command lines. BUGS
x52output can currently control only a single SAITEK mfd device. If there are more than one devices attached to the system, the first will always be used. AUTHOR
Written by Eduard Hasenleithner <eduard@hasenleithner.at> x52output(1)
All times are GMT -4. The time now is 04:19 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy