Want this question answered?
Be notified when an answer is posted
If this is in fact an Echo SRM 210, then a manual is linked below.
echo cat will print out the word 'cat' on the command line. cat echo will attempt to list the contents of a file called 'echo'.
A period right after the "echo" command would echo an empty line.
echo "This is my text" > myfile.txt
Nylon
The echo command is used to print a statement by default to the screen. example: echo Good Morning output: Good Morning note: quotes are not used and will be displayed in the output if used other examples: echo off/on - turns echo on or off, otherwise commands are visible on the screen. Useful for bat files. @echo off - the @ hides the line it precedes so use this for the first line. echo. - displays a blank line echo text > myfile.txt - writes to target location (myfile.txt), overwiting it if it exists. echo text >> myfile.txt - appends to the target (myfile.txt)
Echo
http://lawnandgarden.manualsonline.com/manuals/mfg/weed_eater/545117526.html?idRes=15826863 This link should let you obtain the manual for detailed instructions with photos.
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.
The best type of string to use for a Kobalt weed eater is a high-quality, durable trimmer line that is compatible with the specific model of the weed eater.
It jumps to the line after the indicated label. For example, this batch... @ECHO OFF ECHO apple GOTO BANANA ECHO sauce :BANANA ECHO ice cream ... would generate the following output: apple ice cream
I don't really understand your question, but try these commands, they might help to understand the possibilities: touch demo.c echo '*.c' echo "*.c" echo *.c echo \*.c