【Linux】EOF使用
-
#!/bin/sh
-
HOST=127.0.0.1
-
USER=root
-
PASS=ESBecs00
-
mysql -h$HOST -u$USER -p$PASS << EOF
-
use test;
-
select * from tab1;
-
create table tab1bak as select * from tab1;
-
select * from tab1bak limit 1;
-
exit
-
EOF
-
-
-
info=`mysql -h$HOST -u$USER -p$PASS << EOF
-
use test;
-
select * from tab1;
-
select * from tab1bak limit 1;
-
exit
-
EOF`
- echo $info
[root@localhost /root ]# sh test.sh
Warning: Using a password on the command line interface can be insecure.
id name passwd mima mima2
1 1 1 111 3333333333333
3 3 3 333 3333333333333
4 4 4 5 3333333333333
id name passwd mima mima2
1 1 1 111 3333333333333
Warning: Using a password on the command line interface can be insecure.
id name passwd mima mima2 1 1 1 111 3333333333333 3 3 3 333 3333333333333 4 4 4 5 3333333333333 id name passwd mima mima2 1 1 1 111 3333333333333
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29096438/viewspace-2126591/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Linux EOF使用Linux
- linux下EOF寫法梳理Linux
- Linux shell指令碼中內聯輸入 <<- EOF和 <<EOF的區別Linux指令碼
- Linux中EOF自定義終止符介紹Linux
- 【Linux】Linux計劃任務 crontab中%處理 unexpected EOFLinux
- C語言EOF含義C語言
- 基於C語言EOF與getchar()的使用詳解C語言
- C語言 EOF是什麼?C語言
- c語言中的getchar()和EOFC語言
- Go:錯誤 could not launch process: EOF 解決Go
- 【學生資訊管理系統】EOF 和 BOF
- 【心得】Ctrl+Z、 、 、eof的區別和用法
- 論時間與!=EOF的絕對關聯
- sqlplus在使用EOF時不顯示命令方法-引數-S靜默方式SQL
- linux系統下怎麼輸入EOF退出輸入迴圈while(getline(cin, temp)){.....}LinuxWhile
- 解決問題:OSError: Unable to open file (truncated file: eof = 22118400, sblock->base_addr = 0, stored_eofErrorBloC
- javax.mail.MessagingException:[EOF] 解決方法JavaAIException
- EOF 如何防止多行寫入檔案變數替換變數
- Go 執行 程式 test.go:1:1: expected ‘package‘, found ‘EOF‘GoPackage
- C語言中 EOF,在不同系統中的組合鍵C語言
- EOF中的$符號不被當成預設的跳脫字元需改成\$符號字元
- UNIX網路程式設計學習(14)--使用select正確處理EOF的str_cli函式修訂版程式設計函式
- Linux 使用Linux
- 處理OGG-02198 Incompatible record (logical EOF) in trail fileAI
- Linux ulimit使用LinuxMIT
- Linux基本使用Linux
- linux使用nginxLinuxNginx
- linux alias使用Linux
- linux使用技巧Linux
- linux 磁碟使用Linux
- [Linux] Mount windows共享給linux使用LinuxWindows
- Linux shell日常使用Linux
- 使用Linux lvmLinuxLVM
- Linux core dump使用Linux
- linux之iptables使用Linux
- Linux 和 vim使用Linux
- 【Linux】使用筆記Linux筆記
- linux cd 命令使用Linux