ls /home/user/test > txt
echo "该目录中有文件"`head -1 txt`
rm -rf txt
传给函数的路径是/root/file,如果这是函数的第一个参数,那么函数中可以用 $1 获取。得到文件名file1和file2后,echo "$1/file1" 就输出/root/file/file1,echo "$1/file2" 输出/root/file/file2。
欢迎分享,转载请注明来源:内存溢出
ls /home/user/test > txt
echo "该目录中有文件"`head -1 txt`
rm -rf txt
传给函数的路径是/root/file,如果这是函数的第一个参数,那么函数中可以用 $1 获取。得到文件名file1和file2后,echo "$1/file1" 就输出/root/file/file1,echo "$1/file2" 输出/root/file/file2。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)