This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd <project> | |
find . -name ".svn" -exec rm -rf {} 2> /dev/null \; | |
cd .. | |
cp -ru <project>/* <svn-project> | |
cd <svn-project> | |
svn status |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
array = ["one","two","three","four","five"] | |
join = array[0..-2].join(', ') + " and " + array[-1].to_s + " are numbers that belongs to the array of integers." | |
puts join | |
# "one, two, three, four and five are numbers that belongs to the array of integers." |
NewerOlder