对于og:image
和og:url
,由于它们有 URL,我可以将它们放在link
标签中而不是meta
标签中吗?这样更好吗?
og:image
另外,使用这两个标签 wrt和有何区别og:url
?
我正在创建一个 shell 脚本,它将在本地创建几个 dynamodb 表等。这是我正在使用的创建表 AWS CLI 命令:
aws dynamodb create-table --cli-input-json file://table-user.json --endpoint-url http://localhost:8000
Run Code Online (Sandbox Code Playgroud)
table-user.json 包含用于创建的所有表相关信息。
此命令的问题是我需要单击“q”键才能继续执行下一行,因为它提供表详细信息作为输出。前任:
{
"TableDescription": {
"AttributeDefinitions": [
{
"AttributeName": "id",
"AttributeType": "S"
},
{
"AttributeName": "externalId",
"AttributeType": "S"
},
.
.
.
Run Code Online (Sandbox Code Playgroud)
如何静默运行创建表命令?