用for循环编写删除文件的shell脚本

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用for循环编写删除文件的shell脚本相关的知识,希望对你有一定的参考价值。

1:bash环境。
2:在home目录下手动创建文件1,编写脚本2.sh,执行此脚本可删除文件1。
3:可用命令:find rm 等。
4:使用for循环。

求大神,小弟菜鸟一个,希望能简单点~~~~

#!/bin/bash
#2.sh
cd #进入加目录
touch 1 #创建文件1
read -p "请输入要删除的文件 1 :" file
if [ "$file" != "1" ];then
echo "请输入1 不许输入别的。谢谢!"
fi
for i in $file ;do #用for循环把$file代入$i
rm -rf $i #删除$i
echo "$i 被删除了。"
done #结束
参考技术A vim removefile.sh

#!/bin/sh
# remove files with name pattern matching regexp
echo -n "Enter directory: "; read dir
echo -n "Enter pattern: "; read pat
for loop in `find $dir -name "*$pat*"`
do
rm $loop && echo "$loop has been removed!"
done

Linux系统shell脚本for循环实战之目录权限

Linux系统shell脚本for循环实战之目录权限

一、脚本要求

1.要求输入任意目录:
若目录不在,输出该目录不存在
若目录存在,输出该目录下的文件或目录,且列出其权限

二、编写脚本

[root@192 scripts]# cat ./found_file.sh 
#!/bin/bash
########################################
#Author:jeven
#time:Sun 15 May 2022 09:26:22 PM CST
#filename:found_file.sh
#Script description:
########################################
read -p "please input a dir :" dir
if [ "$dir" == "" -o ! -d "$dir" ];then
	echo "the $dir is not exist!"
	exit 1
	fi
FILE=$( ls  "$dir")
for filename in $FILE
do
	perm=""
	test -r "$dir/$filename" && perm="$perm readable"
	test -w "$dir/$filename" && perm="$perm writable"
	test -x "$dir/$filename" && perm="$perm executable"
	echo "the file $dir /$filename 's permission is $perm "
done

三、执行脚本

[root@192 scripts]# ./found_file.sh 
please input a dir :/data/mysql
the file /data/mysql /file0 's permission is  readable writable 
the file /data/mysql /file1 's permission is  readable writable 
the file /data/mysql /file10 's permission is  readable writable 
the file /data/mysql /file2 's permission is  readable writable 
the file /data/mysql /file3 's permission is  readable writable 
the file /data/mysql /file4 's permission is  readable writable 
the file /data/mysql /file5 's permission is  readable writable 
the file /data/mysql /file6 's permission is  readable writable 
the file /data/mysql /file7 's permission is  readable writable 
the file /data/mysql /file8 's permission is  readable writable 
the file /data/mysql /file9 's permission is  readable writable 

以上是关于用for循环编写删除文件的shell脚本的主要内容,如果未能解决你的问题,请参考以下文章

shell脚本文件夹内文件依次执行

用脚本实现linux2个月前的会话日志打包备份到指定文件夹并删除

shell脚本应用for,while和case应用

shell脚本应用for,while和case应用

Linux 批量创建user和批量删除用户

Shell脚本实现文件遍历和删除操作