摘要: 1、Maven依赖 <!-- FTP使用包 --> <dependency> <groupId>commons-net</groupId> <artifactId>commons-net</artifactId> <version>3.6</version> </dependency> 2、使用方式 阅读全文
posted @ 2023-12-07 16:48 sowler 阅读(105) 评论(0) 推荐(0) 编辑
摘要: Linux编写Shell脚本获取指定目录下所有文件进行处理并保存到新目录 #!/bin/bash app_name="shell" path="/dir" #原目录 last_path="/newDir" #新目录 echo " start ${app_name} " if [ -n "$(ls $ 阅读全文
posted @ 2023-12-07 13:16 sowler 阅读(639) 评论(0) 推荐(0) 编辑