Try the following:
ls *[a-z]
This command lists the contents of the current working directory in a long listing format, including normally hidden files.
Dir WIN*.*
This command lists the contents of the current working directory in a long listing format, including normally hidden files.
bash# ls -la Above command will list all files in current directory in long listing format. To know more read the manual page of ls command. bash# man ls
The Del or Erase command in command prompt.
There is no simple command available to find out the largest files/directories on a Linux/UNIX/BSD filesystem you can easily find out list of largest files/directoris: du -a /var | sort -n -r | head -n 1
To see the full list of options for the ls command, type "ls --help".Some of the more important options are:* -a - show all files (do not hide files starting with .) * -h - human readable (e.g., show file size as 2K instead of 2048) * -l - long listing format (show much more information about each file) The options can be combined. For example "ls -lha".[Note: I often need a long listing of all files with the most recently modified file(s) at the end of the listing so I frequently use the command:ls -latrto accomplish this task. JHM]
The command 'cipher' calls a program that is integrated with Windows that can encrypt-decrypt files.
The attrib command is capable of displaying files that have been marked as hidden.
The command MV is used to move a file in simple Linux Code. This command will move files and directories from one spot to another spot. To move a file, one would simply type in the letters MV before its name.
the "ls" command gives a listing of all the files in the current working directory, "ls" with the -l option gives the listing in vertical format along with file permissions, owner, group, and date when it was last modified. To see a more detailed explanation of the "ls" command and all its options run the command "man ls", man will also work with any other standard Unix/Linux command to give a detailed explanation of its purpose and various options.
document