vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Community Lounge (https://vborg.vbsupport.ru/forumdisplay.php?f=13)
-   -   Multiple Folders - One File (FTP Q) (https://vborg.vbsupport.ru/showthread.php?t=139611)

TruthElixirX 02-16-2007 09:29 PM

Multiple Folders - One File (FTP Q)
 
I have one fill I need to push to every folder inside of this one directory (100+ folders.) Anyway to write some sort of command to make it do it automatically, instead of moving each one hand?

Maybe a separate program?

So basically looks like this:

www>directory1> 100 + folders

and I need to put this one file in everyone one of those folders.

TruthElixirX 02-18-2007 07:06 PM

Code:

#! /bin/sh
# Joe was here
# 10/25/2003
# Script : Copy 1 file to multiple users folders
#
# Reset Copy Counter
x=0
# Prompt for Filename and Location
echo -n "Source Filename and Location [/folder/filename.txt]: "
# Take input make it a string
read P
# If no input the take default source location
if [ "$P" = "" ]; then
P="/folder/filename.txt"
fi
# Filter Filename from $P and make a new string $N
N=`basename $P`
# Prompt for /Users/ folder location
echo -n "Where is your users folder [/Users/]: "
# Take input make it a string
read D
# If no input the take default user location
if [ "$D" = "" ]; then
G="/Users/"
D="/Users/*"
# if input then add to input /* to the end of user location
# adding /* makes a wildcard "any folder" in /user/
else
D=$G
D="$D/*"
fi
#
# Prompt for the destination folder
echo -n "Where will this file be saved [/Library/Preferences/]: "
# Take input make it a string
read L
# If no input the take default user location
if [ "$L" = "" ]; then
L="/Library/Preferences/"
fi
#
# Create Indeterminate Loop
for F in $D
do
# Take Username from $F string
U=`basename $F`
#
# Only if Directories is present filter
if [ -d $F ]
then
#
# copy $P to $F$L if no file exists -i prompts user for over write
# $P = Source file $F = user path
cp -i $P $F$L
# File Copy Counter
x=`expr $x + 1`
#
# Set Owner and Group to file
# $U = user , staff = group , change group as needed
chown $U:staff $F$L$N
#
# Set File Permissions
# 744 = 7 User: read-write-execute
#    = 4 Group: read
#    = 4 Everyone: read
# Read = 4 , Execute = 1 , Write = 2 ,
# None = 0 , So Read+Execute+Write = 7 , Read = 4
# Set Permissions to file:
# User Read Write Execute ( rwx ) ,
# Group Read (r) , Everyone Read (r)
chmod 744 $F$L$N
#
fi
#
# End Loop
done
# Print Total Copied Files
echo
echo File copied $x times
echo
echo Creating Log File
echo
echo Writing to List.txt
# finds all files copied in $G | filters files with $N
# then writes file locations to List.txt
find $G -print | grep $N > List.txt
#
# Copy List.txt to Desktop
cp List.txt ~/Desktop/
# Launches TextEdit.app and opens List.txt
open ~/Desktop/List.txt
echo
echo Done
echo Enjoy

Someone gave me this, but I don't quite understand it.

I run this in a SSH client, right? like PuTTY?


Ugh, I'm a bit confused. I'm not sure what to do.

I have a robots.txt on my desktop and need to put it in everyone of the folders underneath /html/ (Yes, I'm aware this isn't how robots.txt is supposed to be used. Don't ask. -_-...)

I tried running the script, but I'm quite a n00b at SSH.

magnus 02-22-2007 07:20 PM

It's bash script. Upload it to your server then SSH (or telnet) in. Run either of the following commands:

Quote:

$ chmod +x <script>
$ ./<script>
OR

Quote:

$ sh <script>


All times are GMT. The time now is 02:32 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.02840 seconds
  • Memory Usage 1,722KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_code_printable
  • (2)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (3)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete