Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
考虑以下字符串 "google" 。我想使用简单的 bash 脚本将以下字符串拆分如下。请帮帮我。
g o o g l e
fold 的另一种解决方案:
echo "google" | fold -w1