Sponsored Content
Top Forums UNIX for Dummies Questions & Answers Moving files between directories using SFTP Post 302364832 by cjhancock on Saturday 24th of October 2009 05:45:30 AM
Old 10-24-2009
Hi silentbizob,

"...too much info"? No way - it all helps.

Thanks again (and stay tuned for my next dumb question - there's bound to be one soon!)
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

moving directories to new directories on multiple servers

Hi - I am new to unix scripts...I need to move several directories on multiple servers to new directories. (0 Replies)
Discussion started by: mackdaddy07
0 Replies

2. Shell Programming and Scripting

Bash and Awk for creating directories and moving files

I have a security system that FTPs the camera files to my machine, however I want to sort the pictures (taken every 30s) into directories by hour. Every picture uses the following file format. yymmddhhmmsstt.jpg (where tt is the milliseconds) I am thinking the for loop is best for file... (11 Replies)
Discussion started by: Kiint
11 Replies

3. UNIX for Dummies Questions & Answers

Moving files out of multiple directories and renaming them in numerical order

Hi, I have 500 directories each with multiple data files inside them. The names are sort of random. For example, one directory has files named e_1.dat, e_5.dat, e_8.dat, etc. I need to move the files to a single directory and rename them all in numerical order, from 1.dat to 1000(or some... (1 Reply)
Discussion started by: renthead720
1 Replies

4. Shell Programming and Scripting

moving files between directories !!

hi i have a list of directory in a text file with all directories name in a column.(this is not exactly a file but i need to do a grep and awk on a file to find that list) i have the source folders like abchome/abc/xxyz/nl_xxabc/mm// v01 ... (4 Replies)
Discussion started by: debu000
4 Replies

5. Shell Programming and Scripting

Moving files from several directories into parent

I am fairly new to bash(but am proficient in C++), and have only completed a few simple scripts. This is my first script that I actually need to do a serious task. All of my audiobooks are stored in traditional MP3 format: Music/Artist/Album/*.mp3 (which in this case is... (0 Replies)
Discussion started by: gamendorf
0 Replies

6. Shell Programming and Scripting

moving files to different directories

im trying to move media and other files which are in a specified directory to another directory and create another one if it does not exits(where the files will go),them also create a directory will the remaining files with different extensions will go.my first problem is that my script is not... (8 Replies)
Discussion started by: elginmulizwa
8 Replies

7. Shell Programming and Scripting

Need Help Moving Long List Of Files Into Directories

I am very new to BASH and I am having difficulties moving a long list of image files into similarly named directories. I've been trying to come with a script all night and no luck. Here is what my list of files looks like: DSC_0059_01.jpg DSC_0059_02.jpg DSC_0059_03.jpg DSC_0059_04.jpg... (5 Replies)
Discussion started by: jowens1138
5 Replies

8. Shell Programming and Scripting

Copy Directories with Files from One Server to Other using sftp

Hi, I have a requirement where I have to connect to another server and copy directories from one server to another Directories on the Source server look like below (YYYY-MM-DD- 1 to 23) drwxr-xr-x 2 test_user dmfmart 422 Sep 1 23:45 2014-09-01-18drwxr-xr-x 2 test_user dmfmart ... (1 Reply)
Discussion started by: arunkesi
1 Replies

9. Shell Programming and Scripting

Archiving and moving files into directories, creating directories, etc.

how can i move "dataName".sql.gz into a folder called 'database' and then move "$fileName".tar.gz * .htaccess into a folder called 'www' with the entire gzipped file being "$fileName".tar.gz? Is this doable or overly complex. so mydemo--2015-03-23-1500.tar.gz > database -... (5 Replies)
Discussion started by: wyclef
5 Replies

10. Shell Programming and Scripting

Help with moving files on remote server using sftp

I need to sftp a file ABC_sysdate.csv (File name with system date and timestamp) to a temporary directory on the remote server and once the file is copied I've to move the file from temporary directory to the main directory with the same name. I have to generate a new file every hour and repeat... (6 Replies)
Discussion started by: srinup
6 Replies
RADIO(4)						   BSD Kernel Interfaces Manual 						  RADIO(4)

NAME
radio -- device-independent radio driver layer SYNOPSIS
radio* at az? radio* at bktr? radio* at gtp? radio* at rt? radio* at rtii? radio* at sf2r? radio* at udsbr? #include <sys/types.h> #include <sys/ioctl.h> #include <sys/radioio.h> DESCRIPTION
The radio driver provides support for various FM radio cards. It provides an uniform programming interface layer above different underlying radio hardware drivers. For radio tuner controlling there is a single device file available: /dev/radio. The following ioctl(2) commands are supported: RIOCSSRCH (int) This command assumes that a signal search is required and gives direction of search to the driver - 0 to search down and any non-zero value to search up. RIOCGINFO (struct radio_info) RIOCSINFO (struct radio_info) Get or set the current hardware device information into the struct radio_info structure. struct radio_info { int mute; int volume; int stereo; int rfreq; /* reference frequency */ int lock; /* locking field strength */ uint32_t freq; /* in kHz */ uint32_t caps; /* card capabilities */ #define RADIO_CAPS_DETECT_STEREO (1<<0) #define RADIO_CAPS_DETECT_SIGNAL (1<<1) #define RADIO_CAPS_SET_MONO (1<<2) #define RADIO_CAPS_HW_SEARCH (1<<3) #define RADIO_CAPS_HW_AFC (1<<4) #define RADIO_CAPS_REFERENCE_FREQ (1<<5) #define RADIO_CAPS_LOCK_SENSITIVITY (1<<6) #define RADIO_CARD_TYPE (0xFF<<16) uint32_t info; #define RADIO_INFO_STEREO (1<<0) #define RADIO_INFO_SIGNAL (1<<1) }; The mute field is a boolean. The volume field holds the card volume information and can be at most 255. The stereo field is a boolean. The rfreq holds information about the card reference frequency (not all cards support this feature). The lock field holds information about the card locking field strength during an automatic search for cards that support this fea- ture. The freq field is the frequency in kHz the card is tuned to. The caps field is read-only and describes the card capabilities. The capabilities can have following values: RADIO_CAPS_DETECT_STEREO The device can determine is it tuned to a stereo signal. RADIO_CAPS_DETECT_SIGNAL The device can determine is it tuned or not. RADIO_CAPS_SET_MONO The device capable to forcible set its output to mono. RADIO_CAPS_HW_SEARCH The device can do hardware search. RADIO_CAPS_HW_AFC The device has an internal hardware automatic frequency control. RADIO_CAPS_REFERENCE_FREQ The device allow to change the reference frequency of a received signal. RADIO_CAPS_LOCK_SENSITIVITY The device allow to change the station lock sensitivity used during search operation. RADIO_CARD_TYPE Some cards have several different incarnations. This allow to determine the variant of the card. Currently not used. The info field is read-only and describes the current state of the card - tuned/not tuned, stereo signal/mono signal. RADIO_INFO_STEREO Informs whether the device receives a stereo or mono signal. RADIO_INFO_SIGNAL Informs whether the device receives a valid signal or noise. FILES
/dev/radio SEE ALSO
radioctl(1), ioctl(2), az(4), bktr(4), gtp(4), rt(4), rtii(4), sf2r(4), udsbr(4) HISTORY
The radio device driver appeared in OpenBSD 3.0 and NetBSD 1.6. AUTHORS
The radio driver was written by Vladimir Popov and Maxim Tsyplakov. The man page was written by Vladimir Popov. BSD
October 20, 2001 BSD
All times are GMT -4. The time now is 11:35 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy