Hi ,
I do have a line in my code as follows:
if ] ; then
...
else
...
fi
What does the -z does ? Similarly there is -s in some other part of the code. I guess there are many options like this.. Can anybody please tell what all options are available and what do they mean ? (2 Replies)
I need to refer a remote(present on another unix server) directory from my unix machine as a local file.
e.g.
I have one directory D1 on 10.10.10.10 and i need to access files in this directory just like they are present on my unix machine 20.20.20.20.
Is there any way out... i read a bit... (1 Reply)
Hi
Am new to this scripting stuff so bear with me.
I got a script made now that reads in a properties file. The properties file is in the following format:
256= Bos, Sea, FRa
128= HEL
I want to be able to read in each line of the file and split out the letter fields by the numbered field. This... (2 Replies)
Hi,
I am logging to a linux server through a user "user1" in /home directory.
There is a script in a directory in 'root' for which all permissions are available including the directory. This script when executed creates a file in the directory.
When the script is added to crontab, on... (1 Reply)
I have file file1.txt in location 'loc1'. Now i want a copy of this file in location 'loc2' with a new file called test.txt.
Please help me how to do this in shell script. (1 Reply)
This may be a dumb question, but googling is not giving me an answer. I'm trying to figure out how to refer to an input file in my code.
Lets say i run a script in bash:
"sh shellscript.sh inputfile"
(Inputfile will be variable...whatever file i run the script on)
I wanted to make... (5 Replies)
Hi
This is my third past and very impressed with previous post replies
Hoping the same for below query
How to find a existing file location and directory location in solaris box (1 Reply)
Discussion started by: buzzme
1 Replies
LEARN ABOUT HPUX
xrotatewindowproperties
XRotateWindowProperties() XRotateWindowProperties()
Name
XRotateWindowProperties - rotate properties in the properties array.
Synopsis
XRotateWindowProperties(display, w, properties, num_prop, npositions)
Display *display;
Window w;
Atom properties[];
int num_prop;
int npositions;
Arguments
display Specifies a connection to an X server; returned from XOpenDisplay().
w Specifies the ID of the window whose properties are to be rearranged.
properties
Specifies the list of properties to be rotated.
num_prop Specifies the length of the properties array.
npositions
Specifies the number of positions to rotate the property list. The sign controls the direction of rotation.
Description
XRotateWindowProperties() rotates the contents of an array of properties on a window. If the property names in the properties array are
viewed as if they were numbered starting from 0 and if there are num_prop property names in the list, then the value associated with prop-
erty name I becomes the value associated with property name (I + npositions) mod num_prop, for all I from 0 to num_prop - 1. Therefore,
the sign of npositions controls the direction of rotation. The effect is to rotate the states by npositions places around the virtual ring
of property names (right for positive npositions, left for negative nposition).
If npositions mod num_prop is non-zero, a PropertyNotify event is generated for each property, in the order listed.
If a BadAtom, BadMatch, or BadWindow error is generated, no properties are changed.
Errors
BadAtom Undefined atom in the property list.
BadMatch An atom appears more that once in the list or no property with that name is defined for the window.
BadWindow
See Also
XChangeProperty(), XDeleteProperty(), XGetAtomName(), XGetFontProperty(), XGetWindowProperty(), XInternAtom(), XListProperties(), XSetStan-
dardProperties().
Xlib - Properties XRotateWindowProperties()