mirror of
https://github.com/serghey-rodin/vesta.git
synced 2025-08-14 18:49:17 -07:00
removed unnecessary sed expr defenition
This commit is contained in:
parent
5afa0f4a00
commit
861585bcca
30 changed files with 74 additions and 74 deletions
|
@ -62,7 +62,7 @@ shell_list_search() {
|
|||
fi
|
||||
while read line ; do
|
||||
eval $line
|
||||
eval echo "$fields" | sed -e "s/%quote%/'/g"
|
||||
eval echo "$fields" | sed "s/%quote%/'/g"
|
||||
done < $conf
|
||||
}
|
||||
|
||||
|
@ -183,7 +183,7 @@ for user in $(ls $VESTA/data/users/); do
|
|||
type='mail'
|
||||
if [ -n "$(echo $ACCOUNT |grep $object)" ]; then
|
||||
key="ACCOUNT"
|
||||
dom="$(echo $row|cut -f 1 -d :|cut -f 9 -d /|sed -e "s/.conf//")"
|
||||
dom="$(echo $row|cut -f 1 -d :|cut -f 9 -d /|sed 's/.conf//')"
|
||||
result="$ACCOUNT@$dom"
|
||||
suspended=$SUSPENDED
|
||||
object_link=$ACCOUNT
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue