学习参考用,需要服务器上安装lftp. #!/bin/bash #date filepath=/usr/hadoop/bigdata/filterurl filtercount=$(ls $filepath/data/datafilter/*.txt|wc -l) if [ $filtercount -ge 1 ]; then for f in $filepath/data/datafilter/*.txt; do #echo $f if [ -f $f ]; then newfile=$(ba…
安装pscp https://www.chiark.greenend.org.uk/~sgtatham/putty/latest.html cmd脚本 @echo off rem 拷贝的文件名称 set name=zhong-auth.jar rem 拷贝文件的目录 set folder=E:\git\zhong\zhong-auth\target\ rem 当前目录 set current=E:\copysh\ if exist %current%%name% del %current%%na…
作者:良知犹存 转载授权以及围观:欢迎添加微信号:Conscience_Remains 总述 移植一个文件系统时候,我在window下git clone了对方仓库源码,然后用FileZilla用ftp协议把文件传到linux虚拟机的指定目录,然后准备更新到内核,没想到源码目录下面的执行脚本却无法使用,出现了如下bug提示: bash: ./patch-ker.sh: /bin/sh^M: bad interpreter: No such file or directory 我改了…