Shell脚本:(delayexec)Cygwin下调用schtasks创建Windows任务计划,实现延迟或定时执行某一命令

脚本用法:/v/bin/delayexec 创建Windows任务计划,延迟或定时执行Cygwin下某命令. 注:本脚本创建的任务计划仅执行一次,不会重复调用,如果需要周期性反复执行的命令,请手动创建任务计划或使用`schtasks`命令来创建;Usage:
cygwin 任务计划 delayexec Shell Windows 2021年11月23日 177次浏览

Linux Bash/Shell调用ffmpeg转换wmv视频文件为mp4文件,Cygwin测试可用

首先确保你的电脑系统(PC或Linux服务器均可,Windows下用Cygwin测试通过)正确安装和配置ffmpegffmpeg默认使用的参数为:-c:v libx264 -crf 23 -c:a aac -q:a 100简单用法:wmv2mp4 1.wmv 2.mp4参考资料:https://su
cygwin Shell SSH ffmpeg MP4 2021年10月19日 240次浏览

Shell脚本:centos-speedtest-install,Cygwin自动为RedHat/CentOS系统安装ookla speedtest测速程序

#!/bin/bash SCRIPTPATH=$(realpath $0)#SCRIPTPATH="$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )"#SCRIPTPA
cygwin Shell SSH Speedtest 2021年08月02日 225次浏览

Shell脚本:debian-speedtest-install,Cygwin自动为Debian/Ubuntu系统安装ookla speedtest测速程序

#!/bin/bash SCRIPTPATH=$(realpath $0)#SCRIPTPATH="$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )"#SCRIPTPA
cygwin Shell Linux Speedtest 2021年08月02日 371次浏览

Shell脚本:sshproxy,调用autossh连接Linux服务器,自动创建SSH动态端口代理隧道

#!/bin/bashSCRIPTPATH=$(realpath $0)#执行autossh,自动创建SSH动态端口代理隧道display_usage() {echo -e "$SCRIPTPATH\n" echo -e "\t执行autossh,自动创建SSH动
cygwin Shell SSH OpenSSH 2021年08月02日 239次浏览

Bash/Shell查询光猫运行状态(光纤光衰,运行温度等...)

#!/bin/bash#查询光猫状态:光纤光衰值等...#匹配型号:友华 PT926GmodemType="友华 PT926G"trap "rm -f $cookieFile" 0curl -s 'http://192.168.1.1:8080/boaform
cygwin Shell 2021年07月20日 254次浏览

VBS检查Cygwin安装器setup-x86_64.exe是否有更新

'CreateObject("Shell.Application").ShellExecute "http://www.cygwin.com/setup-x86_64.exe"Dim Etag,ExeUrlExeUrl="http://www.cyg
cygwin VBS Windows 2021年07月20日 174次浏览

ssh-expire-time.py:查找~/.ssh/config配置文件,排列主机过期信息Python实现

#!/usr/bin/env python3# -*- coding: utf-8 -*-#列出~/.ssh/config主机到期时间#自用ssh-expire-time命令python实现版本#原始ssh-expire-time为shell脚本实现,参看:/v/bin/ssh-expire-tim
cygwin Python SSH 2020年11月06日 256次浏览

sshfindip Python版本,通过IP查找~/.ssh/config 主机配置项

#!/usr/bin/env python3# -*- coding: utf-8 -*-#根据主机ip查找openSSH配置文件~/.ssh/config对应主机配置项#自用sshfindip命令python实现版本#原始sshfindip为shell脚本实现,参看:/v/bin/sshfindi
cygwin Python 2020年11月05日 215次浏览

sshfind:主机信息快捷查找命令:shell版本

#!/bin/bash SCRIPTPATH=$(realpath $0)#SCRIPTPATH="$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )"#SCRIPTPA
cygwin Shell 2020年10月30日 198次浏览