11 lines
156 B
Bash
Executable File
11 lines
156 B
Bash
Executable File
#!/bin/bash
|
|
|
|
by="$1"
|
|
|
|
if [ -z "$by" ]; then
|
|
echo "Specify duration in hours"
|
|
exit 1
|
|
fi
|
|
|
|
date -d "+$by hour" > /home/ubuntu/minecraft/live_until.txt
|