Bash 写入文件(变量?)
OK,尝试将 SQL 查询写入文本文件。我试过猫,但没有成功。
这是我想写入文件的内容:
USE vsftpd;
CREATE TABLE `accounts` (
`id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY ,
`username` VARCHAR( 30 ) NOT NULL ,
`pass` VARCHAR( 50 ) NOT NULL ,
UNIQUE (
`username`
)
) ENGINE = MYISAM ;
quit;
这是我使用 cat 或 echo 时得到的结果(也许我需要某种开关?):
USE vsftpd;
CREATE TABLE (
uid=0(root) gid=0(root) groups=0(root) INT NOT NULL AUTO_INCREMENT PRIMARY KEY ,
VARCHAR( 30 ) NOT NULL ,
VARCHAR( 50 ) NOT NULL ,
UNIQUE (
)
) ENGINE = MYISAM ;
quit;
OK trying to write a SQL query to a text file. I have tried cat, and echo no luck.
Heres what I would like to write to the file:
USE vsftpd;
CREATE TABLE `accounts` (
`id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY ,
`username` VARCHAR( 30 ) NOT NULL ,
`pass` VARCHAR( 50 ) NOT NULL ,
UNIQUE (
`username`
)
) ENGINE = MYISAM ;
quit;
this is what I get when using cat or echo (maybe I need some kind of switch?):
USE vsftpd;
CREATE TABLE (
uid=0(root) gid=0(root) groups=0(root) INT NOT NULL AUTO_INCREMENT PRIMARY KEY ,
VARCHAR( 30 ) NOT NULL ,
VARCHAR( 50 ) NOT NULL ,
UNIQUE (
)
) ENGINE = MYISAM ;
quit;
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在没有看到您正在使用的确切命令的情况下,很难说如何解决这个问题,但我怀疑 shell 正在执行 反引号替换 在您的文本上。因此,在有
bash 的地方,尝试将 accounts 作为命令执行,并用命令的标准输出替换反引号文本。由于您的路径中可能没有这样的命令,因此反引号部分会在输出中消失。
尝试使用反斜杠转义每个 ` 字符,如下所示:
It's hard to say how to fix this without seeing the exact command you're using, but I suspect that the shell is doing backquote substitution on your text. So where you have
bash tries to execute
accounts
as a command, and replace the backquoted text with the standard output of the command. And since there's probably no such command in your path, the backquoted section disappears in the output.Try escaping each ` character with a backslash, like this:
如果您在 shell 中运行带有反引号的命令,它将评估 `` 中包含的命令。因此,一种方法是使用单引号,如下所示:
If you run things with backticks in shell, it will evaluate the commands enclosed in ``. So one way of doing it is to use a single quote like so:
无论如何,我想我现在可以发布整个内容,以防其他人使用 vsftpd 并且你帮助了我。这是使用 mysql 的 vsftpd 虚拟用户的脚本。除了创建新用户之外,这里的所有内容都可以从给定的内容中找出如何编写:
anyways guess I can post the whole thing now in case someone else out there uses vsftpd and you helped me out. Heres the script for vsftpd with mysql for virtual users.Everything here except creating new users which you can figure out how to write that from what is given: