fleeting/fb

shell 常用命令行操作
Edited: Sunday 29 June 2025

date created: 22 June 2022
date modified: 14 March 2023
title: shell 常用命令行操作

遍历文件夹,复制/移动文件至根目录

# mac生效,linux下只能生效第一层
cp  knowledge-garden/**/**.md tmo/

# 用这个新方法。
find content/ -name "*.md" | xargs -I file  mv file content