Commit 6a095fd0 authored by VIHARI PIRATLA's avatar VIHARI PIRATLA

Update cheat-sheet.md

parent b7b368b1
......@@ -112,6 +112,14 @@ In the example above, to remove all files in the dir that start with '-' use it
Set the command line history off with `set +o history` and on with: `set -o history`.
Alternatively, if you want to completely disable history then: `unset HISTFILE`.
To write Javascript code in SAX Parser, use `CDATA` blocks to isolate the JS code from the wrath of XML like parser.
```javascript
/*<![CDATA[*/
...code...
/*]]>*/
```
## cURL
Send form data using cURL with `curl -d 'param1=value1' -d 'param2=value2' URL`.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment