编写一个bash脚本程序,用for循环实现将当前目录所有的·c文件移到指定的目录

2024-11-24 07:16:35
推荐回答(1个)
回答1:

#!/bin/bash

for i in `ls *.c`
do
cp $i /path
done

顺便提一下,直接用
cp *.c /path/ 一样可以把.c文件拷到指定目录,for循环并不是必要的