answersLogoWhite

0

put a star sign for search like a* or a*.txt or a*.doc or a*.pdf etc

*.doc etc or a*.* will search all file names starting with a

User Avatar

Wiki User

16y ago

What else can I help you with?

Related Questions

What are hidden files and how can they is displayed in UNIX?

A hidden file is any file or directory that starts with the character '.' (period). It is designed to eliminate common files from showing with the 'ls' command. Using the -a option for 'ls' will show all files.


What do hash builtin do?

Each Name the full file name of the command is determined by searching the directories in $PATH and remembered.


What does the hash builtin do?

Each Name the full file name of the command is determined by searching the directories in $PATH and remembered.


What is the purpose of the question mark in a file name in a command line?

it is a wildcard for each unknown letter in a command. If you want to find all files in a directory that start with a and have a three letter file extention, you would use the command dir a*.???


What character do you use as a substitute for one or more characters when searching for a file or folder?

When searching for a file or folder, the asterisk () is commonly used as a wildcard character to substitute for one or more characters. For example, searching for "doc" would return files like "document," "docs," or "documentation." Additionally, the question mark (?) can be used to represent a single character, allowing for more specific searches. These wildcard characters enhance search flexibility and efficiency.


When a script file contains more than one command what each command must end with?

In general each command in a script file is on a separate line, so it is terminated with a line terminator character (put it automatically when you press the Enter key). Unlike some programming languages, a script file does not need a special terminator for the end of the line.


How do you make a new command in Unix?

first, make a file. in the file you type in the command's name. an example would be the command date. name the file what you want to call that command. when you use the command, type in cat filename and the computer will do the command.


What are wild cards and explain their usage in pattern matching in unix?

wild cards are a special set of character used by the shell to match file name .A wild card "Stand in" for other character of the file name .The file name pattern is formed by ordinary character and meta character using well defined rules . When the pattern is used as an arguments with a command , the shell first suitably expand the arguments and then executes the command . The use of wild card make easier to deal with file in UNIX * any number of character - including zero character ? single character [abc] single character - either a,b,c [a-d] any single character in the range of a to d [!abc] a single character that is not a, b, and c [!a-d] any character not in the range of a to d


What does a backslash in a command line mean?

In a command line, a backslash (\) is often used as an escape character, indicating that the following character should be treated literally rather than as a special character. It can also be used to continue a command onto the next line, allowing for better readability in complex commands. Additionally, in file paths, particularly in Windows, it separates directory levels.


What is a file command used to create or start a new file?

The 'touch' command creates a new empty file in Unix.


What are the wild character in unix?

In Unix, wildcards are special characters used in command-line operations to represent one or more characters in file names or strings. The most common wildcards are the asterisk *, which matches zero or more characters, and the question mark ?, which matches exactly one character. Additionally, square brackets [] can be used to specify a range or set of characters to match. These wildcards facilitate file manipulation and searching by allowing users to refer to groups of files or patterns without needing to specify each file name explicitly.


How can I use ffmpeg to convert a WMV file to an MP4 file?

You can use ffmpeg to convert a WMV file to an MP4 file by running a command in the terminal or command prompt. The command typically looks like this: ffmpeg -i inputfile.wmv outputfile.mp4 This command will convert the WMV file named "inputfile.wmv" to an MP4 file named "outputfile.mp4".