Difference between revisions of "Scripting"

From Linuxintro
imported>ThorstenStaerk
imported>ThorstenStaerk
Line 15: Line 15:
  
 
= See also =
 
= See also =
* [[sHell programming]]
+
* [[shell programming]]

Revision as of 08:58, 29 January 2012

foo()
{
}

defines a function in bash.

Usecases

Delete linebreaks

cat file | tr '\

' '; ' > newfile

TroubleShooting

If you want every line to be shown with evaluated values, write the following to the beginning of the script:

set -x

or -xv for verbose

See also