19 lines
366 B
Bash
Executable File
19 lines
366 B
Bash
Executable File
#!/usr/bin/sh
|
|
#./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 *.txt "lalis69.ddns.net::lalis-ordis/$DIRNAME"
|