summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Friesel <derf@derf.homelinux.org>2009-01-05 18:44:47 +0100
committerDaniel Friesel <derf@derf.homelinux.org>2009-01-05 18:44:47 +0100
commitde347c7a59d7d684cde02c7e8f44e6280fd37095 (patch)
tree261aaa41f988f2030fde31b736d0885c2a0c0685
parent9950792e7707e43201196b4c2853ab34965f8ff9 (diff)
put: Change 'illegal' filenames
-rwxr-xr-xetc/functions/put17
1 files changed, 12 insertions, 5 deletions
diff --git a/etc/functions/put b/etc/functions/put
index 416b910..a8b85d9 100755
--- a/etc/functions/put
+++ b/etc/functions/put
@@ -9,7 +9,7 @@ autoload check_com fdie warn
typeset hostname
typeset -a ssh_options hosts
typeset target_dir server_prefix
-typeset file
+typeset file remote_file illegal
typeset -i n_hosts n_ping n_curl
if ! check_com curl; then
@@ -22,6 +22,7 @@ function put_aneurysm_vpn {
ssh_options=(-q)
target_dir='public_html/tmp/'
server_prefix='http://aneurysm.wildernet.org/~derf/tmp/'
+ illegal='*.(cgi|pl|php|py)'
}
function put_aneurysm_int {
@@ -34,6 +35,7 @@ function put_aneurysm () {
ssh_options=(-q)
target_dir='public_html/tmp/'
server_prefix='https://derf.homelinux.org/~derf/tmp/'
+ illegal='*.(cgi|pl|php|py)'
}
function put_sievert () {
@@ -55,17 +57,22 @@ while [[ $1 == -* ]] {
shift
}
+
n_hosts=$#hosts
if [[ -f $1 ]] {
file=$1
while (( $#hosts )) {
+ remote_file=${file:t}
put_$hosts[1]
ping -c 1 $hostname &> /dev/null || ping6 -c 1 $hostname &> /dev/null
if (( ? == 0 )) {
- scp $ssh_options $file $hostname:$target_dir
- ssh $ssh_options $hostname "chmod 644 $target_dir${file:t}"
- if $(curl -fI $server_prefix${file:t} &> /dev/null); then
- echo $server_prefix${file:t}
+ if [[ $remote_file == ${~illegal} ]] {
+ remote_file=${remote_file:r}
+ }
+ scp $ssh_options $file $hostname:$target_dir/$remote_file
+ ssh $ssh_options $hostname "chmod 644 $target_dir$remote_file"
+ if $(curl -fI $server_prefix$remote_file &> /dev/null); then
+ echo $server_prefix$remote_file
return 0
else
(( n_curl++ ))