文件操作 - safe_marshal.rb
返回文件管理
返回主菜单
删除本文件
文件: /opt/puppetlabs/puppet/lib/ruby/3.2.0/bundler/safe_marshal.rb
编辑文件内容
# frozen_string_literal: true module Bundler module SafeMarshal ALLOWED_CLASSES = [ Array, FalseClass, Gem::Specification, Gem::Version, Hash, String, Symbol, Time, TrueClass, ].freeze ERROR = "Unexpected class %s present in marshaled data. Only %s are allowed." PROC = proc do |object| object.tap do unless ALLOWED_CLASSES.include?(object.class) raise TypeError, format(ERROR, object.class, ALLOWED_CLASSES.join(", ")) end end end def self.proc PROC end end end
修改文件时间
将文件时间修改为当前时间的前一年
删除文件