CHECKSELECTORSYNTAX
Check selector syntax with the Unity Version Control CLI.
読み終わるまでの所要時間 1 分最終更新 9ヶ月前
Description
Checks the syntax of a selector.
Usage
cm checkselectorsyntax | css --file=<selector_file>
(Checks the selector file syntax.)
cat <selector_file> | cm checkselectorsyntax | css -(Unix. Checks selector file from standard input.)
type <selector_file> | cm checkselectorsyntax | css -(Windows. Checks selector file from standard input.)
Options
Option / Argument | Description |
|---|---|
| --file | The file to read a selector from. |
Help
Remarks
This command reads a selector on either a file or standard input, and checks it for valid syntax. If the syntax check fails, the reason is printed on standard output.
Examples
cm checkselectorsyntax --file=myselector.txt
(Checks the syntax of 'myselector.txt' file.)
cat myselector.txt | cm checkselectorsyntax(Checks the syntax of 'myselector.txt' from standard input.)