文件操作 - update-initramfs
返回文件管理
返回主菜单
删除本文件
文件: /usr/share/bash-completion/completions/update-initramfs
编辑文件内容
# update-initramfs(8) completion _update_initramfs() { local cur prev valid_options _get_comp_words_by_ref cur prev # The only option that takes an argument is -k if [[ "$prev" == '-k' ]]; then # Complete with kernel versions _kernel_versions COMPREPLY=( $( compgen -W '${COMPREPLY[@]} all' -- "$cur" ) ) return; fi # Complete with available options (obtained from -h) valid_options=$( update-initramfs -h 2>&1 | \ sed -e '/^ -/!d;s/^ \(-\w\+\).*/\1/' ) COMPREPLY=( $( compgen -W "$valid_options" -- $cur ) ) } complete -F _update_initramfs update-initramfs
修改文件时间
将文件时间修改为当前时间的前一年
删除文件