Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

rfdir(1) [debian man page]

RFDIR(1)							Rfio User Commands							  RFDIR(1)

NAME
rfdir - Remote directory list SYNOPSIS
rfdir directory rfdir filename DESCRIPTION
The remote directory list program provides an interface to the shift remote file I/O daemon (rfiod) for listing a remote directory or file. The filename or directory argument is either a remote file name of the form: hostname:path or a local file name (not containing the :/ character combination). The output from the rfdir command is a full directory listing similar to that of the ls -al command for listing local files or directories. SEE ALSO
rcp(1), rfiod(1) NOTES
rfdir does not support regular expressions (regexp(5)) in the directory or filename argument. The date and time displayed by rfdir are for the last modification to the file. AUTHOR
LCG Grid Deployment Team LCG
$Date$ RFDIR(1)

Check Out this Related Man Page

DPM-RFIOD(8)						    Rfio Administrator Commands 					      DPM-RFIOD(8)

NAME
dpm-rfiod- Remote file access daemon SYNOPSIS
dpm-rfiod [ -d ] [ -f filename ] [ -l ] [ -p port ] [ -s ] [ -t ] [ -4 | -6 ] [ -L log_level ] DESCRIPTION
dpm-rfiod start the daemon handling remote file access requests. This command is usually executed at system startup time (/etc/rc.local). dpm-rfiod uses for the streaming mode (v3) one control port and one data port. The range of data ports to be used by dpm-rfiod can be set with the environment variable RFIO_PORT_RANGE. OPTIONS
-d Turn on printing of debug messages. Default output device is stderr. -f filename Output filename for error, logging and debugging messages. Normal error messages are sent to syslog unless otherwise specified. Two filenames are special : "stderr", which will send messages to standard error and "syslog" which will send to syslog. -l Turn on printing of log messages. Default output device is in /var/log/rfio/log. -p port Specify a network port for the service to listen on. If this option is not given the value RFIO_PORT defined in rfio_constants.h is used. -s Turn on Standalone mode. This option should always be set when dpm-rfiod is not started by inetd. -t Turn on single threaded mode. Useful for debugging as no processes are created. -4 only try to listen on IPv4 addresses -6 only try to listen on IPv6 addresses -L log_level Specify the logging level. Default 6 (LOG_INFO). EXAMPLE
/usr/sbin/dpm-rfiod -sl SEE ALSO
syslog(8), tcp(4) AUTHOR
LCG Grid Deployment Team LCG
$Date: 2010-08-30 08:39:36 +0200 (Mon, 30 Aug 2010) $ DPM-RFIOD(8)
Man Page

2 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

copying file information using awk & grep

Hi, TASK 1: I have been using this code to print the information of files kept at "/castor/cern.ch/user/s/sudha/forPooja" in some text file name FILE.txt. rfdir /castor/cern.ch/user/s/sudha/forPooja | grep data | awk '{print "rfio:///castor/cern.ch/user/s/sudha/forPooja/"$9}' > FILE.txt ... (6 Replies)
Discussion started by: nrjrasaxena
6 Replies

2. Shell Programming and Scripting

Scripting with awk: facing problem

Hi, I wants to print the 9th column information with its path name in some txt file. Here is one line which works fine for me: rfdir /castor/cern.ch/user/s/sudha/forPooja | grep data | awk '{print "rfio:///castor/cern.ch/user/s/sudha/forPooja/"$9}' > dataFilenames.list rfdir=="ls -ltr" ... (2 Replies)
Discussion started by: nrjrasaxena
2 Replies