[20190312]bash IFS例子.txt
[20190312]bash IFS例子.txt
--//bash IFS環境變數定義引數的分割符,一般定義如下:
$ declare | grep IFS| head -1
IFS=$' \t\n'
--//一般也就是空格,tab,回車.我連結例子:http://blog.itpub.net/267265/viewspace-2150611/
function path(){
old=$IFS
IFS=:
printf "%s\n" $PATH
IFS=$old
}
--//利用這個可以接收變數.
$ cat t.sh
#! /bin/bash
old_ifs=$IFS
IFS=','
sqlplus -s -l scott/book<<EOF | while read deptno dname loc
set head off pagesize 0 feedback off verify off echo off
select deptno||','||dname||','||loc from dept;
EOF
do
echo deptno="$deptno" dname="$dname" loc="$loc"
done
IFS=$old_ifs
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/267265/viewspace-2638174/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- [20210930]IFS= read -r line.txt
- [20210318]bash test (( )) [[ ]].txt
- [20181203]bash here $.txt
- [20180930]bash shell &.txt
- [20190312]關於增量檢查點的疑問(補充).txt
- [20190312]檢視v$datafile欄位OFFLINE_CHANGE#, ONLINE_CHANGE#.txt
- [20221104]bash exec使用技巧.txt
- [20210908]Reverse Shell with Bash.txt
- [20210207]bash history小技巧.txt
- [20180413]bash 位置引數.txt
- [20180926]bash與分號.txt
- [20200208]awk學習例子.txt
- [20210913]bash shell $* and $@ 的區別.txt
- [20191010]bash行計算器.txt
- [20201116]bash shell IO重定向.txt
- [20181212]bash shell 字串 補零.txt字串
- Shell中的IFS
- [20231123]函式與bash shell呼叫.txt函式
- [20230428]bash實現xor計算.txt
- [20230314]nc reverse bash shell alias.txt
- [20230310]nc reverse bash shell問題.txt
- [20201109]here-doc(EOF) in bash.txt
- [20201109]bash shell特殊算術方式.txt
- [20210218]bash echo 建立順序號.txt
- [20190412]bash顯示日期相減.txt
- [20181230]Git Bash啟動緩慢.txtGit
- [20231226]vim Align外掛使用例子.txt
- [20190419]bash單雙引號問題.txt
- [20210324]bash shell value too great for base.txt
- [20181229]bash shell的算術運算 .txt
- [20230309]nc reverse bash shell or cmd.exe(windows).txtWindows
- [20221111]bash eval設定變數問題.txt變數
- [20200217]bash顯示path環境變數.txt變數
- [20191011]bash任意進位制編碼表.txt
- [20191230]rhel 7.7 bash_completion如何啟動.txt
- [20210618]記錄bash shell執行的命令.txt
- [20210330]bash使用source or ..呼叫shell指令碼注意txt指令碼
- [20210126]bash ln建立軟連結問題.txt