1.给一个文件,找出300-500行的第四列2. 1.给一个文件,找出300-500行的第四列cat file | head -n 500 | tail -n 200 | awk 'print $4'sed -n '300,500p' file | awk 'print $4' 2.