我可以通过以下命令获取表格
df -h|column -t|sed -E 's/ +/\t/g'
我希望使它成为一个mysql表。这是我目前的尝试
[root@localhost ~]# df -h|column -t|sed -E 's/ +/\t/g'>test
[root@localhost ~]# mysql -pmypassword mydatabase <test
但它不起作用。有什么方法可以做到这一点吗?
我可以通过以下命令获取表格
df -h|column -t|sed -E 's/ +/\t/g'
我希望使它成为一个mysql表。这是我目前的尝试
[root@localhost ~]# df -h|column -t|sed -E 's/ +/\t/g'>test
[root@localhost ~]# mysql -pmypassword mydatabase <test
但它不起作用。有什么方法可以做到这一点吗?