Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/duplicati/duplicati.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenneth Skovhede <kenneth@hexad.dk>2016-09-15 12:39:47 +0300
committerKenneth Skovhede <kenneth@hexad.dk>2016-09-15 12:39:47 +0300
commit3d971aa2bd2b523070b88ac5d124974d9dc67e2b (patch)
tree57b0381aaa709748461e80771208ddc444ae9aae /tabs-to-spaces.sh
parent0c68daff6c2204808c37a79ea4abd2a84f35f79c (diff)
Added script to convert tabs to spaces
Diffstat (limited to 'tabs-to-spaces.sh')
-rw-r--r--tabs-to-spaces.sh5
1 files changed, 5 insertions, 0 deletions
diff --git a/tabs-to-spaces.sh b/tabs-to-spaces.sh
new file mode 100644
index 000000000..0f9ddd0d2
--- /dev/null
+++ b/tabs-to-spaces.sh
@@ -0,0 +1,5 @@
+find Duplicati -type f -name *.html -exec sed -i '' $'s/\t/ /g' {} +
+find Duplicati -type f -name *.js -exec sed -i '' $'s/\t/ /g' {} +
+find Duplicati -type f -name *.css -exec sed -i '' $'s/\t/ /g' {} +
+find Duplicati -type f -name *.cs -exec sed -i '' $'s/\t/ /g' {} +
+find Duplicati -type f -name *.txt -exec sed -i '' $'s/\t/ /g' {} +