Sponsored Content
Homework and Emergencies Emergency UNIX and Linux Support SSH Is hanging and the & sign does not seem to be working Post 302572649 by starter2011 on Thursday 10th of November 2011 01:01:41 PM
Old 11-10-2011
MySQL

assign string to the variable and retrieve value from there.
 

10 More Discussions You Might Find Interesting

1. Solaris

OS Problems -no DNS & SSH not working

I just installed Solaris 6/10 without any problems but I didn't connect the network cable when I installed it. Here are my problems: -I can access webpages using IP addrsses but not with domain names -ssh is installed but it is not running ('ps -e | grep sshd' didn't show it) I have been... (4 Replies)
Discussion started by: kungpow
4 Replies

2. Shell Programming and Scripting

Sign on/Sign off logging script

I'd like to make a script that I can execute every time I sign on to my linux box that keeps track of the time and allows to me to add a remark to a file. So basically once I log in, I run the script, and it outputs the date and time to a text file (log.txt). But that isn't my problem. I need... (1 Reply)
Discussion started by: Glider
1 Replies

3. SuSE

ssh command on remote linux system hanging

Hi, Our systems: system1: amd 64 running suse linux 9 enterprize system2: amd 64 running esx vmware 3 with suse linux 9 enterprize. The problem is: when we ssh into system2 and execute the command: ls -al the session hangs. Infact session hangs when we execute any... (3 Replies)
Discussion started by: rajranibl
3 Replies

4. Shell Programming and Scripting

Replace & sign to &amp word

Hi, I have text file abc.txt. In this file, I have the following data. Input: Mr Smith &amp Mrs Smith Mr Smith &apos Mrs Smith Mr Smith & Mrs Smith Mr Smith& Mrs Smith Mr Smith &Mrs Smith Output: Mr Smith &amp Mrs Smith Mr Smith &apos Mrs Smith Mr Smith &amp Mrs Smith Mr Smith&amp... (4 Replies)
Discussion started by: naveed
4 Replies

5. UNIX for Advanced & Expert Users

Awk expressions working & not working

Hi, Putting across a few awk expressions. Apart from the last, all of them are working. echo a/b/c | awk -F'/b/c$' '{print $1}' a echo a/b/c++ | awk -F'/b/c++' '{print $1}' a echo a/b/c++ | awk -F'/b/c++$' '{print $1}' a/b/c++ Request thoughts on why putting a '$' post double ++... (12 Replies)
Discussion started by: vibhor_agarwali
12 Replies

6. Shell Programming and Scripting

SSH Script is sticking, & sign not doing what I would expect

I am having an issue where I am do an SSH to about 30 servers one at a time however my script is getting hung up sometimes on the SSH. I thought the & at the end as seen below would fire it and move on but that does not seem to be working. #!/bin/s for remsys in trumpetsnail angel delphin... (3 Replies)
Discussion started by: LRoberts
3 Replies

7. Solaris

SSH: internal working but external not working

Hi, This is a strange issue: We have an sftp server. Users can ssh to it from internal LAN without any issue, but they can not ssh to it externally via firewall. Here is what I got: OS is Solaris 9. No hosts.allow and hosts.deny files. Please help. Thank you in advance! (7 Replies)
Discussion started by: aixlover
7 Replies

8. UNIX for Dummies Questions & Answers

SSH tunnel working for ssh but not for sshfs

I'm trying to setup a link between my home pc (work-machine) and a server at work (tar-machine) that is behind a gateway (hop-machine) and not directly accessible. my actions: work-machine$ ssh -L 1234:tar-machine:22 hop-machine work-machine$ ssh -p 1234 user@127.0.0.1 - shh access on... (1 Reply)
Discussion started by: Vathau
1 Replies

9. Red Hat

SSH not working

Hi, I have a server running RHEL 6.0. While logging in through root ,I can login.But if I try to login through "integ" user,I am unable to login. /var/log/secure messages::: May 20 15:25:23 punsyncserv su: pam_unix(su-l:session): session opened for user integ by root(uid=0) May 20 15:29:44... (4 Replies)
Discussion started by: nowornever
4 Replies

10. UNIX for Beginners Questions & Answers

Awk: greater than sign is working upside down

Hi, I noticed a weird behaviour with awk. input: A|B|1-100|blabla_35_40_blabla;blabla_53_60_blabla;blabla_90_110_blabla Objective: For each string separated by ';' in $4, if the first and second numbers are included in the interval in $3, then print "TRUE". Otherwise print "FALSE". In... (3 Replies)
Discussion started by: beca123456
3 Replies
statevars(3U)						    InterViews Reference Manual 					     statevars(3U)

NAME
BrushVar, ColorVar, CompNameVar, FontVar, GravityVar, MagnifVar, ModifStatusVar, NameVar, PatternVar - state variable subject subclasses SYNOPSIS
#include <Unidraw/statevars.h> DESCRIPTION
Unidraw predefines several state variable subject subclasses: BrushVar, ColorVar, FontVar, and PatternVar store the graphics state informa- tion their names suggest; GravityVar records whether gravity is in effect; MagnifVar records the current viewer magnification; ModifStatus- Var records whether state-modifying operations have been applied to a component being edited; NameVar stores a string of interest; and CompNameVar is a NameVar that stores a component and keeps track of its catalog name. These variables represent state that is basic to graphical components and state that is often globally accessible in graphics applications. PUBLIC OPERATIONS
BrushVar(PSBrush* = nil) virtual PSBrush* BrushVar::GetBrush() virtual void BrushVar::SetBrush(PSBrush*) ColorVar(PSColor* = nil) virtual PSColor* ColorVar::GetColor() virtual void ColorVar::SetColor(PSColor*) FontVar(PSFont* = nil) virtual PSFont* FontVar::GetFont() virtual void FontVar::SetFont(PSFont*) PatternVar(PSPattern* = nil) virtual PSPattern* PatternVar::GetPattern() virtual void PatternVar::SetPattern(PSPattern*) Each graphics state state variable subclass defines a constructor that takes an initial value for the state it represents and adds operations for assigning and retrieving that state. GravityVar(boolean = false) virtual boolean GravityVar::IsActive(); virtual void GravityVar::Activate(boolean) The GravityVar constructor takes an initial value that specifies whether gravity is on or off. IsActive returns the current value, and Activate changes it to the one supplied. MagnifVar(float = 1) virtual float MagnifVar::GetMagnif() virtual void MagnifVar::SetMagnif(float) The MagnifVar constructor takes an initial value for the magnification factor, and SetMagnify and GetMagnif assign and return the current value. ModifStatusVar(Component* = nil, boolean = false) virtual boolean ModifStatusVar::GetModifStatus() virtual void ModifStatusVar::SetModifStatus(boolean) virtual Component* ModifStatusVar::GetComponent() virtual void ModifStatusVar::SetComponent(Component*) The ModifStatusVar constructor takes a component instance and an initial value as arguments. The ModifStatusVar is responsible for indicating whether the given component is modified. GetModifStatus, SetModifStatus, GetComponent, and SetComponent get and set these arguments. The modification status will be set automatically (in editors that maintain a ModifStatusVar instance) when an reversible operation is performed on the component. NameVar(const char* = nil) virtual const char* NameVar::GetName() virtual void NameVar::SetName(const char*) The NameVar constructor takes a string as an optional argument, while GetName and SetName retrieve and assign the string. CompNameVar(Component* = nil) virtual Component* CompNameVar::GetComponent() virtual void CompNameVar::SetComponent(Component*) virtual void CompNameVar::UpdateName() virtual const char* PartOf() The CompNameVar constructor takes a component as an optional argument. CompNameVar inherits the GetName operation from NameVar; calling GetName returns the name associated with the component that the CompNameVar stores. The GetComponent and SetComponent calls get and set the component. UpdateName updates the string that GetName returns to reflect the component's catalog name. SetCompo- nent calls this operation automatically when it changes the CompNameVar's component. PartOf returns the name of the root component in the CompNameVar component's hierarchy. SEE ALSO
Catalog(3U), Component(3U), Editor(3U), StateVar(3U), pspaint(3U) Unidraw 6 August 1990 statevars(3U)
All times are GMT -4. The time now is 05:00 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy