4 lines
94 B
Bash
4 lines
94 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
cat $1 | sed s@\"@\\\\\"@g | sed s@^@\"@ | sed s@\$@\\\\n\"@ | sed 's@\t@ @g'
|