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.
我使用以下脚本转储 mysql 数据库名称,然后删除所有不需要的字符(前导尾随 | 和空格)。尽管 sed 仅用于删除前导空格,但它可以删除所有这些空格....为什么?
mysql -uuser -pmypass--skip-column-names -e "从 information_schema.schemata 中选择 schema_name,其中 schema_name 不在 ('Linking', 'information_schema');" | sed 's/^ *//'
试试这个 :
sed 's/^ *//;s/ *$//'