1. 首页
  2. 操作系统
  3. Linux
  4. 一个解压改名的shell

一个解压改名的shell

上传者: 2020-07-29 04:20:32上传 SH文件 420B 热度 16次
一个解压改名的shell,自己用#!/bin/bash#function:"*.so" to "*.txt"echo "starting... wait"mkdir tempfor i in `ls *.tar.gz|awk -F. '{print $1}'`do mkdir ./temp/$i cd ./temp/$i echo "release $i..." tar -xzf ../../$i.tar.gz cd ../..donecd tempfind . -name "*.so" -exec mv {} . \;for i
下载地址
用户评论