编写一个shell脚本程序,把它的第一个位置参数及以后的各个参数指定的文件复制到第一个位置参数指定 20
编写一个shell脚本程序,把它的第一个位置参数及以后的各个参数指定的文件复制到第一个位置参数指定的目录中...
编写一个shell脚本程序,把它的第一个位置参数及以后的各个参数指定的文件复制到第一个位置参数指定的目录中
展开
2个回答
展开全部
1、cpfile.sh实例
#!/bin/sh
if [ -z $1 ]||[ -z $2 ];then
echo Usage $0 dir file1 file2 ...
exit 0
fi
if [ ! -d $1 ];then
echo Usage $0 dir file1 file2 ...
exit 0
fi
for file in $@;do
if [ -f $file ];then
/bin/cp $file $1
fi
done
ls -l $1
2、执行效果
./cpfile.sh
Usage ./cpfile.sh dir file1 file2 ...
./cpfile.sh test.txt sh.txt
Usage ./cpfile.sh dir file1 file2 ...
./cpfile.sh /opt/dst/ test.txt sh.txt
total 4
-rw-r--r-- 1 root root 0 Dec 16 10:07 sh.txt
-rw-r--r-- 1 root root 358 Dec 16 10:07 test.txt
#!/bin/sh
if [ -z $1 ]||[ -z $2 ];then
echo Usage $0 dir file1 file2 ...
exit 0
fi
if [ ! -d $1 ];then
echo Usage $0 dir file1 file2 ...
exit 0
fi
for file in $@;do
if [ -f $file ];then
/bin/cp $file $1
fi
done
ls -l $1
2、执行效果
./cpfile.sh
Usage ./cpfile.sh dir file1 file2 ...
./cpfile.sh test.txt sh.txt
Usage ./cpfile.sh dir file1 file2 ...
./cpfile.sh /opt/dst/ test.txt sh.txt
total 4
-rw-r--r-- 1 root root 0 Dec 16 10:07 sh.txt
-rw-r--r-- 1 root root 358 Dec 16 10:07 test.txt
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询