我正在尝试使用 shell 命令 lin 中的此查询写入文件:
mysql --user=my_user --password='my_password' -e "select concat_ws ('\t' , user_id , first_name , last_name , user_email ) from users" into outfile '/hiking_contacts.txt';
我希望这会创建一个文本文件,但它并没有真正起作用。有人知道我在这里哪里出错了吗?
谢谢,亚历克斯