I want to use sed to replace the current time in the code below
time0=$(date '+%Y-%m-%d')
time1=$(date '+%H:%M:%S')
time=$(echo ""$time0"T"$time1"Z")
replace $time on first line
{
"X-Apple-I-Client-Time" = "2020-07-08T12:55:08Z";
"X-Apple-I-Locale" = "en_US";
"X-Apple-I-MD" = "AAAABQAAABDBy+H0j9QAnYGIzrmKeh9DAAAAAw==";
"X-Apple-I-MD-M" = "6Q3cWbCm2lI9rrTIyrAsku5zxqO/ZAv9HsW5kHo2thiPqFINp0/OsOz++KS/2vc0ImbI2iMVUbYCZjnS";
"X-Apple-I-MD-RINFO" = 50660608;
"X-Apple-I-TimeZone" = "GMT+7";
}
Tks All