What do these commands mean and do? "ls > l" and "ls >> l". I have tried them, but it seems as if they do the same thing - create a file named "l".
What do these commands mean and do?
89 Views Asked by A MUSE At
3
l" and "ls >> l". I have tried them, but it seems as if they do the same thing - create a file named "l"." /> l" and "ls >> l". I have tried them, but it seems as if they do the same thing - create a file named "l"." /> l" and "ls >> l". I have tried them, but it seems as if they do the same thing - create a file named "l"."/>
It create the file and write the output of ls into it.
But this command append the data to existing file if it exist else it does same as above mentioned .