24 lines
484 B
Bash
Executable File
24 lines
484 B
Bash
Executable File
#!/usr/bin/sh
|
|
|
|
DESKTOP=`grep XDG_DESKTOP_DIR $1/.config/user-dirs.dirs`
|
|
DESKTOP=${DESKTOP##*}
|
|
export $DESKTOP
|
|
|
|
/usr/local/bin/identPC.sh
|
|
/usr/bin/kate ./checklist.txt
|
|
grep -is -m 2 "numéro de série" ./identification.txt >tmp.txt
|
|
while read LIGNE
|
|
do
|
|
TMP=${LIGNE##*}
|
|
if [ "$TMP" != "Number" ];then
|
|
DIRNAME="$DIRNAME$TMP"
|
|
break
|
|
else
|
|
DIRNAME="CM_"
|
|
fi
|
|
|
|
done < tmp.txt
|
|
rm -f tmp.txt
|
|
mkdir $DIRNAME
|
|
rsync --port 10073 -aP $DESKTOP/*.txt "lalis69.ddns.net::lalis-ordis/$DIRNAME"
|