首页 > 其他分享 >thunar action

thunar action

时间:2022-09-23 20:46:23浏览次数:36  
标签:解压 do thunar 文件夹 done file action xarchiver

目录

解压

解压到当前文件夹

for file in %F; do xarchiver -x . "$file"; done

解压到…

for file in %F; do xarchiver -e "$file"; done

解压到同名文件夹

for file in %F; do dir=${file%%%%.*} && mkdir "$dir" && xarchiver -x "$dir" "$file"; done

标签:解压,do,thunar,文件夹,done,file,action,xarchiver
From: https://www.cnblogs.com/mutuu/p/16724172.html

相关文章