如何去除 C 文件中的 `#ifdef MACRO ... #endif' 段落

指文件描述符 (查一下更详细资料)
0 standard input 一般是键盘
1 standard output 一般是屏幕
2 standard error 一般是屏幕

把1与2分开的好处之一在于
避免被粗心的系统管理员忽略掉出错提示

[php]
[1 No.518 huanlf@huanlf ~/tmp]$ which ls
/bin/ls

[0 No.519 huanlf@huanlf ~/tmp]$ which ls > /dev/null

[0 No.520 huanlf@huanlf ~/tmp]$ hich ls > /dev/null
bash: hich: command not found

[127 No.521 huanlf@huanlf ~/tmp]$ hich ls 1>&2 > /dev/null
bash: hich: command not found

[127 No.522 huanlf@huanlf ~/tmp]$

[/php]      
请问在
复制内容到剪贴板
代码:
while read line do
if [[ $line = \110 ]]
then
echo good
中,如何获取该含有110行的行号