Redirect STDIN in bash?

前端 未结 2 1606
时光取名叫无心
时光取名叫无心 2021-01-19 01:43

For an example i would like to login to mysql with a password. i KNOW i can use -pmypass but i want to learn how do i redirect stdin in bash. So my test is

m         


        
2条回答
  •  天涯浪人
    2021-01-19 02:26

    Normally, it's just:

    echo password|command
    

    But many programs, including MySQL, that read passwords don't actually read from stdin. Rather, they interact with the terminal directly. See Trick an application into thinking its stdin is interactive, not a pipe.

提交回复
热议问题