Mysql命令结果重定向相关

来自三线的随记
Admin讨论 | 贡献2019年11月5日 (二) 15:58的版本 (创建页面,内容为“=== one === select * from table limit 100  into outfile '/home/test.txt'; === two === pager cat > /home/test.txt; nopager === three === mysql -p -e "select * fr…”)
(差异) ←上一版本 | 最后版本 (差异) | 下一版本→ (差异)

one

select * from table limit 100  into outfile '/home/test.txt';

two

pager cat > /home/test.txt;

nopager

three

mysql -p -e "select * from table"  > /home/test/txt