I am using Rancher, and I am doing a backup from my DB (mysql), using the code:
mysqldump -u atom -p -c atom > /var/lib/mysql/backup20190724.sql
Now, I need to copy this SQL script and send it to the developer team.
I was trying to look the file using CAT code:
cat /var/lib/mysql/backup20190724.sql
and then I was planning on copying and paste the code to my notepad, so I can save it and send it.
I am really, really new to all of this, but what is happening is that my sql code has more lines then the shell can show me. And even if i try to see from 100 to 100 lines from it, it does not work, because it looks like some part of the sql code shows only half of it (like it does not have a number of fixed lines).
Does anyone have a clue on how can I do this?