我有一个像这样的JSON对象:
var myObject = [
{
"Name" : "app1",
"id" : "1",
"groups" : [
{ "id" : "test1",
"name" : "test group 1",
"desc" : "this is a test group"
},
{ "id" : "test2",
"name" : "test group 2",
"desc" : "this is another test group"
}
]
},
{
"Name" : "app2",
"id" : "2",
"groups" : [
{ "id" : "test3",
"name" : "test group 4",
"desc" : "this is a test group"
},
{ "id" …Run Code Online (Sandbox Code Playgroud) 我为我的程序创建了Yocto配方.什么是从配方构建图像的默认文件夹?在构建图像时,我想将我的文件移动到另一个文件夹,如
"/选择/ XYZ".
我应该简单地做"mv"还是有其他选择吗?
谢谢