View Single Post
  #2  
Old 02-18-2007, 07:06 PM
TruthElixirX's Avatar
TruthElixirX TruthElixirX is offline
 
Join Date: Sep 2004
Location: Oklahoma
Posts: 517
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

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.
Reply With Quote
 
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.02931 seconds
  • Memory Usage 1,771KB
  • Queries Executed 11 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD_SHOWPOST
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_code
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_box
  • (1)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit_info
  • (1)postbit
  • (1)postbit_onlinestatus
  • (1)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • reputationlevel
  • showthread
Included Files:
  • ./showpost.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_postinfo_query
  • fetch_postinfo
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showpost_start
  • bbcode_fetch_tags
  • bbcode_create
  • postbit_factory
  • showpost_post
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • showpost_complete