有人知道如何将选定的多个对象或节点作为特定组名的父对象吗?通过一个有用的脚本:D或者仅对名称中有群组的对象自动移动到正确的群组名称。
感谢所有
// grab list of selected objects
$sl = `ls -sl`;
// the group we want to parent to
$group_name = "group1";
// now parent to the group name specified
parent -a $items $group_name;