Files
khorasan-doc/create_studnet.sh
T
nearology 99fb7f0e82 Add sitemap and styles for Persian font integration
- Created a new sitemap.xml file for better SEO.
- Added a compressed version of the sitemap as sitemap.xml.gz.
- Introduced extra.css for custom styles, including Persian font support (IRANSansX).
- Defined font-face rules for regular and bold styles of IRANSansX.
- Implemented various text styles and layout adjustments for better readability.
- Enhanced Mermaid diagram styles to support Persian text rendering.
2026-04-28 15:27:18 +03:30

22 lines
257 B
Bash
Executable File

#!/bin/bash
groupadd -f students
students=(
1023061622
)
for student in "${students[@]}"
do
username="stu$student"
useradd -m -s /bin/bash -g students "$username"
echo "$username:123456789" | chpasswd
chage -d 0 "$student"
done