如何使用 sublime text 3 打开多个远程文件?
How do I open multiple remote files with sublime text 3?
我目前正在使用 rsub(sublime text 3 的 rmate)在本地打开远程文件。
rmate myFile1.txt
将打开一个本地选项卡。
但是当我尝试打开多个远程文件时:
rmate myFile*
仍然只有一个本地选项卡打开一个远程文件。
如何使用 * 一次打开多个文件?
rmate 不支持目录,如错误所述:
$ rmate ~/Folder
/home/me/Folder is a directory and rmate is unable to handle directories.
您可以 'find' 您的文件 find
并将它们传递给 rmate
;
例如,使用find
到recursively find all files in current directory and subfolders and use -exec
打开用rmate
找到的每个项目
find . -name "*.txt" -exec rmate {} \;
使用不带 -exec rmate {} \;
部分的 find
命令只显示结果;
$ find .
./file1.txt
./file2.txt
./folder/file1.txt
./folder/file2.txt
我目前正在使用 rsub(sublime text 3 的 rmate)在本地打开远程文件。
rmate myFile1.txt
将打开一个本地选项卡。
但是当我尝试打开多个远程文件时:
rmate myFile*
仍然只有一个本地选项卡打开一个远程文件。 如何使用 * 一次打开多个文件?
rmate 不支持目录,如错误所述:
$ rmate ~/Folder
/home/me/Folder is a directory and rmate is unable to handle directories.
您可以 'find' 您的文件
find
并将它们传递给 rmate
;
例如,使用find
到recursively find all files in current directory and subfolders and use -exec
打开用rmate
find . -name "*.txt" -exec rmate {} \;
使用不带 -exec rmate {} \;
部分的 find
命令只显示结果;
$ find .
./file1.txt
./file2.txt
./folder/file1.txt
./folder/file2.txt