To get the current time in a shell script, you can use the date
command, which is a command-line utility that is used to display or manipulate the date and time.
Here are the steps to get the current time in a shell script:
- Open a text editor and create a new shell script.
- Add the following line to the script to get the current time:
current_time=$(date +"%T")
This line will set the current_time
variable to the current time in the format HH:MM:SS
.
- You can then use the
echo
command to display the current time in your script:
echo "The current time is $current_time"
This line will display a message that includes the current time.
- Save and close the shell script.
That’s it! You have added code to your shell script to get the current time using the date
command. You can now run the script to display the current time whenever you need it.