1-how will you display a file whose name is starting with '-
'?
2-how will you add a patten at end of every line in vi
editor?

Answers were Sorted based on User's Feedback



1-how will you display a file whose name is starting with '- '? 2-how will you add a pat..

Answer / habs

Q1: ls | grep "^\-"

Is This Answer Correct ?    6 Yes 1 No

1-how will you display a file whose name is starting with '- '? 2-how will you add a pat..

Answer / dibya lochan giri

ans of Q2-using cmd :1,$ s/$/pattern name/
or %s/$/pattern name/g

Is This Answer Correct ?    6 Yes 3 No

1-how will you display a file whose name is starting with '- '? 2-how will you add a pat..

Answer / anonymous

Q1 - ls -- -*

Is This Answer Correct ?    0 Yes 0 No

1-how will you display a file whose name is starting with '- '? 2-how will you add a pat..

Answer / vamshi

1,$ s/^/-/g

2. 1,$ s/$/P/g

Is This Answer Correct ?    0 Yes 1 No

1-how will you display a file whose name is starting with '- '? 2-how will you add a pat..

Answer / sri

1. ls -.*

Is This Answer Correct ?    0 Yes 1 No

1-how will you display a file whose name is starting with '- '? 2-how will you add a pat..

Answer / shaishaw

how will you display a file whose name is starting with '- '
$ find / -type f -name "-*" -print 2>null

/home/staff/thaler/-
/home/staff/thaler/-FF
/home/patron/polly/-n
/home/member/plucky/-w
/home/nijwala/bsn/-a.out
/home/mvpbhat/-foo
/home/mvpbhat/-l

Is This Answer Correct ?    0 Yes 1 No

1-how will you display a file whose name is starting with '- '? 2-how will you add a pat..

Answer / shh

1) ls _*

2) 1,$ s/$/<addtext>/g

Is This Answer Correct ?    0 Yes 2 No

Post New Answer

More Unix Commands Interview Questions

What is a command and examples?

0 Answers  


What is the difference between grep and grep?

0 Answers  


What is the difference between pipe and xargs?

2 Answers   Amazon, CTS,


What does grep v grep do?

0 Answers  


what do you understand by 'building block primitive'?

3 Answers   Infosys,


Which command is used to kill the last background job?

0 Answers  


What is pipe command in unix?

0 Answers  


What does find command return in unix?

0 Answers  


Can you enlist some commonly used network commands?

0 Answers  


in UNIX,How to copy file into directory?

5 Answers  


What command is used to check the current users?

0 Answers  


write grep commands to select the lines that have exactly two characters

8 Answers   PSI Data Systems,


Categories