Mem del passe de perl à bash

This commit is contained in:
Alan Garcia 2013-02-18 13:18:21 +00:00
parent 1fe0e4594e
commit 9ec9177350
2 changed files with 21 additions and 24 deletions

View File

@ -52,7 +52,8 @@ print_domain_letter() {
get_html_path_by_name() {
local name="$1"
if [[ ! "$name" =~ ^([a-z0-9]+)$ ]] ; then
echo "Account name is incorrect."
# Error on error flux
echo "Account name is incorrect." >&2
exit 2
fi
echo "$ALTERNC_HTML/${name:0:1}/$name"

View File

@ -1,31 +1,27 @@
#!/usr/bin/perl
#!/bin/bash
use strict;
if [ $# -ne 2 ] ; then
echo "Usage: mem_del <name>"
echo " Delete the AlternC account <name>"
exit 1
fi
my ($name) = @ARGV;
name="$1"
if (!$name) {
print "Usage: mem_del <name>\n";
print " Delete the AlternC account <name>\n";
exit(1);
}
if [[ ! "$name" =~ ^([a-z0-9]+)$ ]] ; then
echo "Account name is incorrect."
exit 2
fi
$ENV{PATH} = "";
delete @ENV{'IFS', 'CDPATH', 'ENV', 'BASH_ENV'};
if (!($name =~ /^([a-z0-9]+)$/)) {
die "Account name is incorrect.";
}
$name=$1;
if [[ ! "$(id -u)" == "0" ]] ; then
echo "please launch mem_add as root (or using sudo)"
exit 4
fi
if ( $< != 0 ) {
die "please launch mem_del as root (or using sudo)";
}
#$< = $>;
#$( = $);
# Get the vars and some functions
source /usr/lib/alternc/functions.sh
target="$(get_html_path_by_name "$name")"
my $PTH="/var/alternc/html/".substr($name,0,1)."/".$name;
test -d "$target" && rm -rf "$target"
system("/bin/rm -rf '$PTH'");
0;