<%# Copyright (C) The Arvados Authors. All rights reserved. SPDX-License-Identifier: AGPL-3.0 %> An example arv command to get a <%= object.class.to_s.underscore %> using its uuid:
arv <%= object.class.to_s.underscore %> get \
 --uuid <%= object.uuid %>
An example arv command to update the "<%= object.attributes.keys[-3] %>" attribute for the current <%= object.class.to_s.underscore %>:
arv <%= object.class.to_s.underscore %> update \
 --uuid <%= object.uuid %> \
 --<%= object.class.to_s.underscore.gsub '_', '-' %> '<%= JSON.generate({object.attributes.keys[-3] => object.attributes.values[-3]}).gsub("'","'\''") %>'