fix
This commit is contained in:
parent
897137d111
commit
2fd0d7f8cd
1 changed files with 7 additions and 0 deletions
7
asciiConvert1.sh
Executable file
7
asciiConvert1.sh
Executable file
|
@ -0,0 +1,7 @@
|
|||
#!/bin/bash
|
||||
|
||||
: ${1?"Aufruf: $0 <ascii text Datei>"}
|
||||
while read line; do
|
||||
escapedLine=$(echo $line | sed 's/\([$\"`]\)/\\\1/g')
|
||||
echo "echo -e \"$escapedLine\""
|
||||
done < $1
|
Loading…
Reference in a new issue