Any Restart Script?

Hi,
I would like to check if there's any sample of restart script for my AIX server.
I'm planning to restart it every month.
Thanks.

A restart "script" for the server, or?

man reboot
man shutdown

yes, i'm looking for a restart script that will auto restart my server every month end.

You could cron it using something like

0 0 1 * * /usr/sbin/shutdown -Fr
0 0 1 * * /usr/sbin/shutdown -r +5

might be kinder. It will give you 5 minutes warning, just in case you're up late burning the midnight oil ...

How to create new folder throw commandline ?

thankyou !