Skip to content

Instantly share code, notes, and snippets.

View petrstepanov's full-sized avatar
🏠
Working from home

Petr Stepanov petrstepanov

🏠
Working from home
View GitHub Profile
@petrstepanov
petrstepanov / generate-notes.sh
Last active February 3, 2024 23:54
Nextcloud Notes Generator
#!/bin/bash
mkdir -p ./NotesTest
for i in {1..10000}
do
echo "$i" >> "./NotesTest/Note_$i.txt"
done
chown -R www-data:www-data ./NotesTest