#!/bin/bash
for((i = 1; i <= 100; ++i)); do
wget -O `printf '%03i' $i`.html "https://hashkeys.club/92/?page=$i"
done
QFile file("path/to/myfile.json");
file.open(QIODevice::ReadOnly);
QByteArray jsonData = file.readAll();
#!/bin/bash
for user in /home/*; do
[ $user == /home/lost+found ] && continue
d="$user/Desktop"
if [ ! -d "$d" ]; then
d="$user/Рабочий стол"
[ -d "$d" ] || continue
fi
install -m777 sources/{update,shutdown}.desktop "$d"
done