{"id":34,"description":"shell - get specific line in a file","tags":["programming","shell"],"contents":["# there are multiple ways to do this. I find sed easier than others","# sed -n 'np' file - to get nth line a file","sed -n '10p' file # to get 10th line in a file"]}
