|
|
cat [ 0-9 ] *
echo *
cd; pwd; trial; ls >> trialRemember, if you want to redirect both commands to the same file, you have to use the ``>>'' (append) sign for the second redirection. If you do not, you will wipe out the information from the pwd command.
banner `date | cut -c12-19`
1memo 100data 9 05nameThe command echo * produces a list of all the files in the current directory.
The command ls [a-m]* lists only those files that start with the letters ``a'' through ``m.''
No, the & (ampersand) must be placed at the end of the command line.
cd; pwd > junk; ls >> junk
banner `date | cut -c1-10`