首页 > 试题广场 >

输出第5行的内容

[编程题]输出第5行的内容
  • 热度指数:53637 时间限制:C/C++ 1秒,其他语言2秒 空间限制:C/C++ 256M,其他语言512M
  • 算法知识视频讲解
编写一个bash脚本以输出一个文本文件nowcoder.txt中第5行的内容。

示例:
假设 nowcoder.txt 内容如下:
welcome
to
nowcoder
this
is
shell
code
你的脚本应当输出:
is
示例1

输入

welcome
to
nowcoder
this
is
shell
code

输出

is
sed -n '5p' nowcoder.txt
发表于 2022-09-16 18:02:24 回复(0)
sed -n 5p
发表于 2022-08-08 18:05:23 回复(0)
awk NR==5
发表于 2022-08-01 15:28:36 回复(0)
awk 'NR==5{print $0}'
sed -n  '5p' 
tail -n +5 nowcoder.txt| head -n 1
发表于 2022-07-21 20:17:51 回复(0)
sed -n '5p' nowcoder.txt
发表于 2022-06-29 17:36:44 回复(0)
cat -n nowcoder.txt|grep 5|awk '{print $2}'
发表于 2022-06-13 21:44:10 回复(0)
cat nowcoder.txt |head -5|tail -1
发表于 2022-06-05 17:05:26 回复(0)
sed -n 5p
awk 'NR==5{print}'

发表于 2022-05-09 10:44:32 回复(0)
awk 'NR==5{print}' nowcoder.txt
发表于 2022-04-25 09:54:41 回复(0)
```bash
awk 'NR == 5' nowcoder.txt
```
发表于 2022-04-17 11:26:53 回复(0)
tr '\n' ' ' < nowcoder.txt |awk '{print $5}'
发表于 2022-04-11 10:19:11 回复(0)
head -n 5 ./nowcoder.txt  | tail -n 1 




发表于 2022-04-01 20:15:12 回复(0)
awk ' NR==5 {print $0}'
发表于 2022-03-30 15:48:33 回复(0)
#!/usr/bin/env bash
awk 'NR==5{print $0}'  nowcoder.txt
发表于 2022-03-25 10:09:02 回复(0)
awk "NR==5" nowcoder.txt
发表于 2022-03-24 19:36:59 回复(0)
#!/bin/bash
cat nowcoder.txt | awk NR==5
发表于 2022-03-22 20:36:49 回复(0)
#!bin/bash
awk 'NR==5{print $0}' nowcoder.txt

发表于 2022-03-15 15:04:52 回复(0)
awk 'NR==5'
发表于 2022-03-01 09:07:57 回复(0)
head -n 5 nowcoder.txt |tail -n 1
发表于 2022-02-25 22:21:40 回复(0)