Sponsored Content
Full Discussion: shift command
Top Forums Shell Programming and Scripting shift command Post 24881 by Nisha on Friday 19th of July 2002 05:54:32 AM
Old 07-19-2002
Hey Thanks!!!

Sounds like a good one..

Thanks,
Nisha
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

shift command

There is an error when i am trying to use the shift command in this way: ($1 = -d, $2 = 123, $3 = -c etc etc) for $arg in $@ do case $arg in "-d") shift; (so that the $2 will become the $arg now) (and while it loop the 2nd time,) ... (1 Reply)
Discussion started by: AkumaTay
1 Replies

2. UNIX for Dummies Questions & Answers

xterm SHIFT crazy

hi all, when I press SHIFT at once it work like as I've hold it (like CapsLock is On, but it Off) ! ... and if I press F1 (or another function key) it put out 24z :( it is occure on my remote sun 8 , xterm session help me please ! (2 Replies)
Discussion started by: oneivan
2 Replies

3. Shell Programming and Scripting

Regarding the shift command???

I am running a program where in I have this command which is giving error the shift: number is not correct. can you please tell me how shift actually works? the line which is giving error is- set $PARAM; shift; shift; shift; shift; shift; shift; shift; shift Is it related somewhere to... (2 Replies)
Discussion started by: shrao
2 Replies

4. UNIX for Dummies Questions & Answers

shift not working

Hi, I wrote one script, in between script needs to use 10th and 11th positional parameters, that time i used "shift". Here i am facing the below find problem, ./DataCount.sh: cannot shift I tried 1) I have read man pages for shift 2) Before but * and ** 3) Simple shift with out giving... (4 Replies)
Discussion started by: Nagapandi
4 Replies

5. Shell Programming and Scripting

AIX command to shift up

I would need the awk command or a better way to get my file that looks like 1234 5678 8912 3456 7890 to look like 1234,5678,8912,3456,7890 Thanks in advance (4 Replies)
Discussion started by: bombcan
4 Replies

6. UNIX for Dummies Questions & Answers

A Shift into UNIX

Hi, Firstly, I did a search for this question both on this site and on the internet and have not been able to find a suitable answer that is not general in nature. I have always been a Windows user. I use my girl friend's mac every now and then, but I always come back to windows. For a... (1 Reply)
Discussion started by: mearex
1 Replies

7. Shell Programming and Scripting

Use of Shift command

Hello Expert Can any one please explain what is the use of shift command in general terms: set -- $(ls -t) shift rm -Rf $* what is the use of shift command over here. Thanks a lot for your help (2 Replies)
Discussion started by: aks_1902
2 Replies

8. UNIX for Dummies Questions & Answers

can someone explain shift command in script?

think using shift would help me finish my script but cant get it work without your help. would appreciate if you give me a example with shift & counter in the same script so I can later work on that to my one. Thanks and Good Luck! (1 Reply)
Discussion started by: me.
1 Replies

9. Shell Programming and Scripting

AIX function example with "shift" command

Hello, I am reading one of the AIX manuals about shell scripting and (AIX 5) and I found this example when introducing to functions: function usage { prog="$1"; shift print -u2 "$prog: usage: $prog $@" exit 1 } This example is meant to be easy but I don't understand what it is... (5 Replies)
Discussion started by: Kibou
5 Replies

10. Shell Programming and Scripting

Shift command help

#!/bin/bash hostname=$1; shift for hostname in $1 do ping $hostname done I want to run the above script as hostname.sh yahoo.com google.com cnn.com. I want to shift each hostname to $1. How can do that with above code as currently it's not shifting. (5 Replies)
Discussion started by: scj2012
5 Replies
GPESYNCD(1)							   User commands						       GPESYNCD(1)

NAME
gpesyncd - synchronisation agent for GPE PIM data SYNOPSIS
gpesyncd [-r, --remote] [-d, --daemon [PORT]] DESCRIPTION
gpesyncd synchronises PIM data by transforming vCards, vEvents, vTtodo and iCals to the appropriate format in the SQLite database of the respective GPE applications and vice versa. gpesyncd exports and imports PIM data either to stdout or over TCP/IP. It can also be used as a command line tool to access all the PIM data. opensync-plugin-gpe needs gpesyncd to run on the machine where the GPE application data are stored. OPTIONS
-r, --remote Starts gpesyncd in remote mode, which means that all input must be entered as <nn>:<data> where <nn> is the length of the data <data>. Output follows the same convention. -d, --daemon [PORT] Starts in TCP/IP mode. Listens on port 6446 unless PORT is specified. MODES
REMOTE MODE You can run this program in "remote" mode, that means for everything you want to write to it, you have to prepend the number of bytes you're actually writing. For example, you want to write "help", you type in: "4:help". Sounds useless, but when using it for syncing from a remote computer it knows when the input ends and you can even send newlines. To activate the remote mode, just run it with "gpesyncd --remote". DAEMON MODE To activate the daemon mode run it with "gpesyncd -D". You can specify optionally the port by adding a port number after the -D parameter, e.g. "gpesyncd -D 2442" will listen on port 2442. The default port is 6446. Only IPs that are listed in $HOME/.gpe/gpesyncd.allow are allowed to connect to the gpesyncd. You can add IP addresses while running the daemon, whenever someone tries to connect to the daemon, it'll check all the listed IPs whether they are allowed or not. No wildcards or something like gpesyncd.deny are implemented! AUTHOR
This man page was written by gregor herrmann <gregoa@debian.org> for the Debian project based on the --help output, the README, and the web page, and is released under the same terms as the software itself. gpesyncd 2.0 2009-05-11 GPESYNCD(1)
All times are GMT -4. The time now is 03:19 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy