99fb7f0e82
- 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.
22 lines
257 B
Bash
Executable File
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
|