命令行下载 youtube 视频
下载视频 # https://github.com/yt-dlp/yt-dlp .\yt-dlp --write-auto-sub --sub-langs en --embed-thumbnail --no-overwrites --continue --proxy "http://192.168.0.1:1234" --use…
|
1,035
|
|
40 字
|
2 分钟
linux 下脚本中显示对话框
手册:https://help.gnome.org/users/zenity/stable/index.html.en 不少发行版本中集成了 zenity 例子 显示一条信息 zenity --info --title "提示" --text="显示信息" 常规选项 --title=title 标题 --wi…
|
1,175
|
|
204 字
|
4 分钟
Avalonia 打包应用
以 Ubuntu 下打包为例子 dotnet-packaging 工具地址 https://github.com/quamotion/dotnet-packaging 安装工具 dotnet tool install --global dotnet-deb 项目目录中配置项目 dotnet deb install 生成安装包 dotnet deb …
|
1,159
|
|
201 字
|
3 分钟
ubuntu 执行定时任务
临时执行定时任务 at 精度只有一分钟 安装 sudo apt install at 执行定时合集 echo "sudo systemctl suspend" | at 23:00 2025-04-05 echo "sudo systemctl suspend" | at 23:00 echo 'e…
|
1,276
|
|
78 字
|
几秒读完
git 签出部分目录中文件
一个 git 学习站 https://learngitbranching.js.org/?locale=zh_CN 不需要 git 历史数据 优点: 非常轻量,只传输你需要的文件内容。 不包含 .git 目录,适合部署或分发。 简单一些,但是 github 不允许这么操作,要使用 sparse-checkout 的方式 # 从远程仓库获取某个目录并…
|
1,156
|
|
166 字
|
2 分钟