摘要: 确保服务器上启用了X11Forwarding:在/etc/ssh/sshd_config设置中 X11Forwarding yes X11DisplayOffset 10 X11UseLocalhost no 在客户端(我的MacOS):在~/.ssh/config写入 ForwardX11 yes 阅读全文
posted @ 2022-07-18 16:52 小筱痕 阅读(200) 评论(0) 推荐(0) 编辑
摘要: # move n files from dir1 to dir2 ls -Q dir1 | head -n | xargs -i mv dir1/{} dir2/ 例子: $ tree -d . ├── annotations ├── train #40,000items └── val #0ite 阅读全文
posted @ 2022-07-18 15:29 小筱痕 阅读(803) 评论(0) 推荐(0) 编辑