InterviewSolution
Saved Bookmarks
| 1. |
What Is The Use Of !! Command ? Can I Use It With Conjunction To Some Other String To Complete A Command ? |
|
Answer» Its USED to execute LAST command. Yes this can be used with other STRING to execute new command. For eg - if LS was the last command, We can execute !! -l for having the LONG listing. Its used to execute last command. Yes this can be used with other string to execute new command. For eg - if ls was the last command, We can execute !! -l for having the long listing. |
|