I have a test.txt file with the following text
1 2 3 4 3 4 5 6 8 7 3 2
I want to save it as
4 3 2 1 6 5 4 3 2 3 7 8
Is there any shell command that does this?
rev will complete the task:
rev
rev file 4 3 2 1 6 5 4 3 2 3 7 8
Source: https://habr.com/ru/post/1598166/More articles:Generalized map as function argument - dictionaryCSS multiple font families? - htmljQuery multiple select show / hide - javascriptundefined метод `each 'для "#": String - rubyHow to list all immutable (tracked) files? - gitTypeError:() принимает ровно 1 аргумент (3) - pythonPHP Link - Confusion - pass-by-referenceAnt build with Eclipse Mars error due to missing classpath link - javaSparkContext does not serialize inside companion object - scalaHow to show DisplayName and the value of each property in a model dynamically - c #All Articles