mirror of
https://github.com/chris2511/xca.git
synced 2026-09-12 19:51:05 +05:00
8 lines
107 B
Bash
Executable File
8 lines
107 B
Bash
Executable File
#!/bin/sh
|
|
|
|
for i in $@; do
|
|
cp "$i" /tmp/x
|
|
cat /tmp/x |sed 's/[ \t]*$//' |sed 's/ *\t/\t/' > "$i"
|
|
done
|
|
|