|
Akka/Scala example source code file (convert_tabs_to_spaces.sh)
The convert_tabs_to_spaces.sh Akka example source code#!/bin/sh find . -name "*.java" |while read line do expand $line > $line.new mv -f $line.new $line done find . -name "*.scala" |while read line do expand $line > $line.new mv -f $line.new $line done find . -name "*.html" |while read line do expand $line > $line.new mv -f $line.new $line done find . -name "*.xml" |while read line do expand $line > $line.new mv -f $line.new $line done echo "converted all tabs to 2 spaces" exit 0 Other Akka source code examplesHere is a short list of links related to this Akka convert_tabs_to_spaces.sh source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.