移除指定目录的文件

#!/bin/bash

dir1=/root/was1

dir2=/root/was2

#dir1=/wasprofiles/c01-`hostname`/installedApps/cell01

#dir2=/wasprofiles/c02-`hostname`/installedApps/cell02

function del_files

{

i=1

echo "----------------------------------------------------------------------"

arr=($1)

for s in ${arr[@]}

do

echo "$i $s"

i=$[$i + 1]

done

echo "----------------------------------------------------------------------"

echo "Choose files to remove.(Example:1 2 3 or all)"

read rmfiles

while test -z "$rmfiles"

do

echo "Input is null! Please input again.(Example:1 2 3 or all)"

read rmfiles

done

echo "----------------------------------------------------------------------"

if [ "$rmfiles" = "all" ] ; then

for rf in ${arr[@]}

do

[ ! -d /tmp/$2 ] && mkdir /tmp/$2

rmname=`sed ‘s/\///‘ <<< "$rf" | sed ‘s/\//#/g‘`

mv $rf /tmp/$2/$rmname

done

else

for rf in $rmfiles

do

if grep ‘^[[:digit:]]*$‘ <<< "$rf" >/dev/null ; then

arf=$[$rf - 1]

if test -z ${arr[$arf]} ; then

echo "Eeror: Input $rf not exist"

else

[ ! -d /tmp/$2 ] && mkdir /tmp/$2

rmname=`sed ‘s/\///‘ <<< "${arr[$arf]}" | sed ‘s/\//#/g‘`

mv ${arr[$arf]} /tmp/$2/$rmname

fi

else

echo "Eerror: Input $rf is not number."

fi

done

fi

echo "ls /tmp/$2"

ls -l /tmp/$2

}

echo "Please input was1,was2 or exit."

read line

while test -z "$line" || ([ "$line" != "was1" ] &&  [ "$line" != "was2" ] && [ "$line" != "exit" ])

do

echo "Input error! Please input was1,was2 or exit."

read line

done

echo "----------------------------------------------------------------------"

if [ $line = "was1" ] ; then

echo "Files will be found in $dir1"

echo "Please input filename.(Example: abc 123.txt)"

read filename

while test -z "$filename"

do

echo "Input is null! Please input again.(Example: abc 123.txt)"

read filename

done

for file in $filename

do

ffile=`find $dir1 -type f -name $file\*`

if test -z "$ffile" ; then

echo "Info: $file is not found."

else

ffiles="$ffile $ffiles"

fi

done

if test -z "$ffiles" ; then

echo "Can‘t find input files."

else

del_files "$ffiles" was1

fi

elif [ $line = "was2" ] ; then

echo "Files will be found in $dir2"

echo "Please input filename.(Example: abc 123.txt)"

read filename

while test -z "$filename"

do

echo "Input is null! Please input again.(Example: abc 123.txt)"

read filename

done

for file in $filename

do

ffile=`find $dir2 -type f -name $file\*`

if test -z "$ffile" ; then

echo "Info: $file is not found."

else

ffiles="$ffile $ffiles"

fi

done

if test -z "$ffiles" ; then

echo "Info: All input files not found!"

else

del_files "$ffiles" was2

fi

elif [ $line = "exit" ] ; then

exit

fi

时间: 2024-11-10 13:12:11

移除指定目录的文件的相关文章

Window Linux下实现指定目录内文件变更的监控方法

转自:http://qbaok.blog.163.com/blog/static/10129265201112302014782/ 对于监控指定目录内文件变更,window 系统提供了两个未公开API:SHChangeNotifyRegister  SHChangeNotifyDeregister 分别用于注册Notify以及监视. 同时,还提供了ReadDirectoryChangesW  函数(貌似NT以上可用). 在 .net framework 中,另提供了封装好的 FileSystem

IO流中在指定目录找文件,以及递归

1.0 指定目录找文件 public class ListAllTest { public static void main(String[] args) { File dir = new File("E:\\Java"); listAll(dir, 0);         } public static void listAll(File dir, int level) { File[] files = dir.listFiles(); System.out.println(GetL

[php] PHP创建指定目录和文件

前几天看到有人问PHP环境下如何创建文件到指定目录下,正好自己最近在学习,经过一翻测试,终于出结果了,贴出来与大家分享. 目录结构:代码所在的文件wwwroot/mydir/test/test.php 创建目录:在wwwroot/mydir/下创建目录testjiang123. 创建文件:在wwwroot/mydir/testjiang123/下创建文件test.html. //创建文件夹 $username="testjiang123"; $dir="../mydir/&q

linux下自动ftp到服务器对比拷贝指定目录下文件

#!/bin/bash process=8 PWD=`pwd` DAT=`date` ftpip="192.168.1.1" user="ftp_username" password="ftp_password" local_dir="/home/" getlist() { ftp -n $ftpip <<EOF |awk '{print $9}'|sed '/^$/d' >$PWD/list user $u

用svn下载github中指定目录的文件

1.先用命令看看github的分支 svn ls https://github.com/BlueRiverInteractive/robovm-ios-bindings 输出: branches/ trunk/ 或者使用UI操作,浏览目录(一般在库下面都有两个目录:branches,trunk) 打开trunk目录下面就可以看到这个库下面的目录和文件了 然后: svn ls https://github.com/BlueRiverInteractive/robovm-ios-bindings/t

rsync 排除指定目录或文件进行同步

很常见的情况:我想同步/myweb下的 一些php文件 ,  但是不想复制/myweb/log/里边的一些日志文件,因为这些文件太大了,备份也是没有意义的. 现在如果想避开某个路径  直接添加—exclude 即可 比如—exclude “./log” –exclude ‘./log/file’ Note: the directory path is relative to the folder you are backing up. rsync备份时排除指定目录或文件 要排除指定目录,可以在客

带通配符,查找 指定目录下文件的SQL存储过程

通配符查找 指定目录下文件的过程: --查找指定文件夹(目录)下的文件. ALTER PROCEDURE [FileS].[DIR_FileS] @Path nvarchar(1000) --搜索路径.         --表示[文件夹路径]必须以'\'结尾:         --表示[文件路径]不能以\结尾.(文件名可带通配符) ,@FileS nvarchar(MAX) OUTPUT --返回 找到的 文件名串 ,@Depth int=1 --搜索[文件夹]深度.不为1,将搜索[子文件夹].

IO流-获取指定目录下文件夹和文件对象【File类】

一.运用File类实现获取指定目录下文件夹和文件对象 1.File类 2.方法: 获取文件绝对路径 :getAbsolutePath 案例: import java.io.File; /** * 获取指定目录下文件夹和文件对象 * Created by lcj on 2017/11/7. */ public class fileTest03 { public static void main(String[] args) { File dirr = new File("D:\\xuexizili

Ruby中的遍历指定目录的文件方法

在ruby中我们要实现遍历指定目录的方法,网上的方法也非常之多,我们可以拿来参考参考,如下边的traverse.rb文件内容所示: #!/usr/bin/ruby  def traverse(filepath)     if File.directory?(filepath)       puts "Dirs:" + filepath       Dir.foreach(filepath) do |filename|         if filename != ".&quo