Sponsored Content
Full Discussion: Reverse command
Top Forums UNIX for Dummies Questions & Answers Reverse command Post 302956870 by depn on Monday 5th of October 2015 05:22:51 AM
Old 10-05-2015
Reverse command

Hi,

Apologies in advance - out of my scope here but would love your help.

I have the following command on destination system to copy data from one system to another:

Code:
rcmd [Sourcemachine] "cd data; find . -print|cpio -ocB" | dd ibs=5k obs=5k|cpio -iducmvB

I am looking to run a once off command from the Sourcemachine to push the data on the sourcemachine to the destination machine.

Thanks in advance

---------- Post updated at 04:22 AM ---------- Previous update was at 04:22 AM ----------

By the way - system is a sco unix version

Moderator's Comments:
Mod Comment Use code tags, thanks.

Last edited by zaxxon; 10-05-2015 at 07:57 AM.. Reason: code tags
 

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Reverse Display

I need to display a line in an xterm window but i want to revese the colors so that the background color becomes the foreground color and the foreground color the background color. I want to do this as part of ksh script. Can somebody tell me how to do this ? Thanks, Abu. (5 Replies)
Discussion started by: marcose
5 Replies

2. Shell Programming and Scripting

Reverse *

when I do $ ls z* List of all files begining with 'z'. But what if I want to do a reverse lookup. Just for interest sake ;) $ ls ztr should be same as $ ls ztr* $ ls zt* $ ls z* (2 Replies)
Discussion started by: azmathshaikh
2 Replies

3. Shell Programming and Scripting

Reverse FTP

Hi Everybody, I want to write a script in unix which will automatically FTP a .txt file from my client machine D: drive(Windows) That is I want to FTP a file from my PC to UNIX box but this should be done from UNIX box by a shell script. (i.e. I will invoke the script in UNIX and FTP will be... (4 Replies)
Discussion started by: ganesh123
4 Replies

4. UNIX for Dummies Questions & Answers

reverse of touch command

If touch command sets the modification and access times of files to the current time of day, is there a command that could do the reverse of this? Say change the access times of files to an earlier time or date? Say I have this file: HOME> ls -l -rw-rw-r-- 1 orbix orbix 886 May... (1 Reply)
Discussion started by: Orbix
1 Replies

5. IP Networking

Reverse DNS

Hello, I'm trying to get reverse dns to point to my domain on network but I'm failing. I am using bind dns with port 53 enabled and my ISP is mediacom. Currently my reverse dns is *.client.mchsi.com and I would like to make it example.com basically. My bind configuration I have 2 records, one... (4 Replies)
Discussion started by: GRMrGecko
4 Replies

6. UNIX Desktop Questions & Answers

How do you reverse terminal command line to the top?

Hi All, I work on a Linux platform which runs Red Hat (forget which version) and use both korn and bash shells. Is there a way of making the command line appear at the top of the terminal window and any lists, commands or directory names etc to appear below the top, that is to say reverse the... (1 Reply)
Discussion started by: ray_m
1 Replies

7. Shell Programming and Scripting

CUT command delimiter in reverse

Hi, I've a situation where, a=xxx.yyy.zzz.txt EXTN=`echo $a | cut -d . -f2` Using the above code it delimites and will return "yyy.zzz.txt" to EXTN. But i need to get only the extension "txt". so as per the above code it delimits in the first "." itself. Can anyone help how to do... (6 Replies)
Discussion started by: skcvasanth
6 Replies

8. Shell Programming and Scripting

Reverse of a string

Hi All, I have a String str="Manish". I would like to reverse it. I know the option to do this in bash is: echo "Manish" | rev but I have seen an alternate solution somewhere, which states that: str="Manish" echo $str | awk '{ for(i=length($0);i>=1;i--) printf("%s",substr($0,i,1));... (7 Replies)
Discussion started by: manishdivs
7 Replies

9. UNIX for Beginners Questions & Answers

Reverse content

I have file and need to reverse the contents: cat filename 2345 AXY 34567 Output expects 34567 AXY 2345 (1 Reply)
Discussion started by: Maayi
1 Replies
rcmd(3) 						     Library Functions Manual							   rcmd(3)

NAME
rcmd, rcmd_r - Allow execution of commands on a remote host LIBRARY
Standard C Library (libc.a) SYNOPSIS
#include <sys/types.h> #include <netdb.h> #include <unistd.h> int rcmd( char **host, u_short port, char *local_user, char *remote_user, char *command, int *err_file_desc); The following function is supported in order to maintain backward compatibility with previous versions of the operating system. int rcmd_r( char **host, u_short port, char *local_user, char *remote_user, char *command, int *err_file_desc, struct hostent_data *host_data); PARAMETERS
Specifies the name of a remote host that is listed in the /etc/hosts file. The function sets the host parameter to be the fully qualified hostname. Specifies the well-known port to use for the connection. The /etc/services file contains the DARPA Internet services, their ports, and socket types. Points to usernames that are valid at the local host. Any valid username can be given. Points to usernames that are valid at the remote host. Any valid username can be given. Specifies the name of the command to be executed at the remote host. Points to an address used by rcmd() to store a pointer to the file descriptor for a channel used by the remote process to write stderr mes- sages and to accept bytes as signal numbers to be forwarded to the process group of the command. If a null pointer is specified, the standard error (stderr) of the remote command is the same as the standard output (stdout). No provi- sion is made for sending arbitrary signals to the remote process. However, it is possible to send out-of-band data to the remote command. Per-thread data for reentrant version. DESCRIPTION
The rcmd() (remote command) function allows execution of certain commands on a remote host. For example, the rcmd() function is used by rsh and rlogin, among others. The rcmd() function looks up a host via the name server or, if the local name server is not running, via the /etc/hosts file. If the con- nection succeeds, a socket in the Internet domain of type SOCK_STREAM is returned to the calling process and given to the remote command as standard input (stdin) and standard output (stdout). Always specify the host name. If the local domain and remote domain are the same, specifying the domain parts is optional. The rcmd() function returns the fully qualified hostname in the host parameter. To reuse the host name in another rcmd() call, you should make a string copy of the host parameter. For example: rcmd ( &host, .... ); first_host = strdup(host); ... rcmd ( &host, .... ); Only processes with an effective user ID of root user can use the rcmd() function. An authentication scheme based on remote port numbers is used to verify permissions. Ports in the range from 0 to 1023 can only be used by a root user. NOTES
The rcmd_r() function is the reentrant version of rcmd(). It is supported in order to maintain backward compatibility with previous ver- sions of the operating system. The netdb.h header file defines the hostent_data structures. RETURN VALUES
Upon successful completion, the rcmd() function returns a valid socket descriptor. The function returns a value of -1 if the effective user ID of the calling process is not root user, if the function fails to resolve the host, or if it encounters a socket connection error. FILES
Contains the service names, ports, and socket types. Contains hostnames and their addresses for the hosts in a network. Contains the name server and the domain name. RELATED INFORMATION
Functions: gethostname(2), rresvport(3), rresvport_af(3), ruserok(3), sethostname(2). Commands: rlogin(1), rsh(1). delim off rcmd(3)
All times are GMT -4. The time now is 10:54 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy