文件操作 - __fish_complete_lpr_option.fish
返回文件管理
返回主菜单
删除本文件
文件: /usr/share/fish/functions/__fish_complete_lpr_option.fish
编辑文件内容
function __fish_complete_lpr_option --description 'Complete lpr option' set -l optstr (commandline -t) switch $optstr case '*=*' set -l IFS = echo $optstr | read -l opt val set -l descr for l in (lpoptions -l ^/dev/null | string match -- "*$opt*" | string replace -r '.*/(.*):\s*(.*)$' '$1 $2' | string split " ") if not set -q descr[1] set descr $l continue end set -l default '' if string match -q '\**' -- $l set default 'Default ' set l (string sub -s 2 -- $l) end echo $opt=$l\t$default$descr end case '*' lpoptions -l ^/dev/null | string replace -r '(.*)/(.*):.*$' '$1=\t$2' end end
修改文件时间
将文件时间修改为当前时间的前一年
删除文件