Find knowledge base article(s) by searching for keywords in the title e.g. type linux in the search box below
Find knowledge base article(s) by browsing the subject categories of articles
Technology quick references, cheatsheets, user manuals etc.
Shop Online through ShopifyLite
Tutorials on various IT applications.
Search Title    (UL:0 |SS:f)

Software >> OS >> Unix >> Shell >> bash >> printf examples

 

 

S/N Task Example
  print left justified

printf "%-10s" "hello"

hello

  print right justified

printf "%10s\n" "hello"

     hello

  print middle justified  
  pass the width as argument

printf "%*f\n" 10 10

 10.000000

 

  pass width and precision as argument

printf "%*.*f\n" 10 2 10

     10.00

 

[ © 2008-2021 myfaqbase.com - A property of WPDC Consulting ]