created shell dir

This commit is contained in:
2025-02-23 15:43:13 +00:00
parent b1f506bbd9
commit 4372a9042b
14 changed files with 0 additions and 0 deletions

13
shell/time_measurement.sh Normal file
View File

@@ -0,0 +1,13 @@
#!/bin/bash
#start time measurement from here
START=$(date +%s)
CURRENT_DIRECTORY=$(pwd)
sleep 2 #sleep 2 seconds
END=$(date +%s)
#end time measurement
DIFFERENCE=$(( END - START ))
echo
echo Time elapsed: $DIFFERENCE seconds.