answersLogoWhite

0

Is mdelet a valid script command?

Updated: 10/2/2022
User Avatar

Wiki User

14y ago

Best Answer

mdelete is a command to delete files over FTP. Whether or not it's a valid script command would depend on the scripting language.

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Is mdelet a valid script command?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

What does sys.argv do on python?

sys.argv is a way to access command line arguments in Python. sys.argv is an array of all the command line parameters, where the first value is the name of the file being run. For example, let's say you have a python script named example.py that looks like this: import sys print(sys.argv) This script will simply print the command line parameters in an array. If, for example, you run the script from a command line as python example.py param1 param2 the output will be ['example.py', 'param1', 'param2']


Which command is used to pause the execution of the script for a specified amount of time?

You need to be more specific. There are dozens (hundreds?) of scripting languages out there.


How do you send commands to a command-line EXE program from a batch?

Just put the commands in your batch file. When someone runs the program, it will execute the commands it comes across line-by-line. - Example Batch Script: This script will run an application EXE file with command line parameters. This will use the shutdown.exe file that comes with windows. It shuts down the computer in 60 seconds. @shutdown -s -t 60 - You could also use the START command. For any command or exe file that runs from the command line, you could open a command prompt and type the name of the file followed by /? to find out what you can use as command parameters. Example: START /?


Can you crash a computer by running start star dot star in cmd?

No. The computer will not recognise *.* as being a valid command.


How do you place a call to a command line executable within a PHP script?

Use the "system" function: system("Command.exe"); (See: php.net/system)

Related questions

Is rename progra1 iyogits a valid command?

Yes it is a valid command.. You can also use "ren" instead of "rename"..


How do you insert admin command script on roblox?

get on on free models


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.


What is the Purpose of exit command in Shell of Unix?

The 'exit' command allows you to stop a running shell script at any point and to return a "status" value back to whomever called the shell script. This is a very common practice with shell scripts; sometimes you want to stop the script before it gets to the end of the shell script (for various logic reasons). The 'exit' command also allows you to give a status that any other calling process can use to determine if the shell script ended successfully or not.


What command do you use to display a message in java script?

document.write("hello world")


Why cant you use generic words in command prompt?

Command prompt only supports the valid commands..


Why use awk -v command?

This is used when you want to give a variable in an awk script a value before the script starts executing, even before the BEGIN block. You would do this on the command line if the variable needs different values for different executions rather than hardcoding it in the awk script itself.


Where is the command bar located on Roblox Studio?

It shousuvl \


What is the command to execute a shell script?

If the shell script is readable and executable then to execute it just type the name of the shell script file. Otherwise, you can explicity call a shell interpreter to run the file as a shell script, i.e., ksh myfile


What line is necessary at the beginning of a script to tell the OS what to use to run the script?

The special line at the beginning of the script is only necessary if you want the script to be run by a certain command interpreter that is different from your logon shell or because you don't know what environment the user of the shell might be running in. It is a special comment line that looks like: #!/command-name such as: #!/usr/bin/ksh which causes the ksh interpreter to be used for the rest of the shell script.


How do you write a shell script which counts the last 10 lines present in a given file?

You don't need a shell script to do this - just use the 'tail' command.


What is the purpose of using echo command?

The echo command echoes out any of the command line arguments given to it. It is commonly used in shell scripts to echo what portions of the shell script are doing.