typora设置图片自动上传

配置ssh密钥

这样每次使用ssh和scp的时候都不需要输入密码去验证了

步骤1:本地生成公钥私钥对

1
ssh-keygen

步骤2:上传到远程服务器(windows下可以使用git bash)

1
ssh-copy-id -i ~/.ssh/id_rsa.pub root@192.168.0.75

步骤3:验证

image-20240306140739008

设置自动图片上传

powershell执行

1
& "命令路径"

cmd执行powershell脚本

1
powershell.exe -File "xxx.ps1"

typora使用scp上传图片

powershell版本
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# 定义服务器相关的变量
$ServerUser = "root"
$ServerHost = "showfaker.top"
$DestPath = "/root/hexo/blog/images"
$BaseUrl = "http://showfaker.top/images"

# 检查是否至少提供了一个文件路径作为参数
if ($args.Count -lt 1) {
Write-Error "You must specify at least one file path."
exit 1
}

# 初始化一个数组来存储上传成功的文件URLs
$UploadSuccess = @()

# 遍历所有提供的文件路径参数
foreach ($ImagePath in $args) {
try {
# 使用scp命令上传文件,忽略所有输出
$FileName = [System.IO.Path]::GetFileName($ImagePath)
$ScpCommand = "scp `"$ImagePath`" ${ServerUser}@${ServerHost}:`"$DestPath\$FileName`""
Invoke-Expression $ScpCommand | Out-Null

# 构建上传成功的文件URL并添加到数组中
$FileUrl = "${BaseUrl}/${FileName}"
$UploadSuccess += $FileUrl
} catch {
# 如果上传失败,输出错误并退出脚本
Write-Error "Error uploading $ImagePath"
exit 1
}
}

# 所有文件都成功上传后,输出成功的消息和所有文件的URLs
if ($UploadSuccess.Count -gt 0) {
Write-Output "Upload Success:"
$UploadSuccess | ForEach-Object { Write-Output $_ }
}

bash版本
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/bin/bash

# 检查至少提供了一个文件路径作为参数
if [ "$#" -lt 1 ]; then
echo "Error: You must specify at least one file path."
exit 1
fi

# 定义服务器相关的变量
SERVER_USER=root
SERVER_HOST=showfaker.top
DEST_PATH="/root/hexo/blog/public/images"
BASE_URL="http://showfaker.top/images"

# 初始化一个变量来存储上传成功的文件URLs
UPLOAD_SUCCESS="Upload Success:"

# 遍历所有提供的文件路径参数
for IMAGE_PATH in "$@"
do
# 使用scp命令上传文件,忽略所有输出
scp "$IMAGE_PATH" ${SERVER_USER}@${SERVER_HOST}:${DEST_PATH} >/dev/null 2>&1

# 检查scp命令是否成功执行
if [ $? -eq 0 ]; then
FILE_NAME=$(basename "$IMAGE_PATH") # 获取当前文件的文件名
UPLOAD_SUCCESS="${UPLOAD_SUCCESS}\n${BASE_URL}/${FILE_NAME}" # 追加文件的URL到成功消息中
else
# 如果上传失败,输出错误并退出脚本
echo "Error uploading $IMAGE_PATH"
exit 1
fi
done

# 所有文件都成功上传后,输出成功的消息和所有文件的URLs
echo -e "$UPLOAD_SUCCESS"
image-20240306135025614

typora设置图片自动上传
http://showfaker.top/2024/03/06/typora-images-upload-set/
作者
ShowFaker
发布于
2024年3月6日
许可协议