Difference between revisions of "Cut"

From wikieduonline
Jump to navigation Jump to search
 
(2 intermediate revisions by the same user not shown)
Line 18: Line 18:
 
== Related ==
 
== Related ==
 
* <code>[[awk -F]]</code>
 
* <code>[[awk -F]]</code>
 +
* <code>[[tr]]</code>
 +
* [[cut -d]]
  
 
== See also ==
 
== See also ==
 +
* {{tr}}
 
* {{awk}}
 
* {{awk}}
 
* {{cut}}
 
* {{cut}}
  
 
[[Category:Computing]]
 
[[Category:Computing]]

Latest revision as of 13:19, 2 April 2024

cut --help
cut: illegal option -- -
usage: cut -b list [-n] [file ...]
       cut -c list [file ...]
       cut -f list [-s] [-w | -d delim] [file ...]


Tabulator as separator:

cut -f1 -d$'\t'
echo 'maps.google.com' | rev | cut -d'.' -f 1 | rev

Activities[edit]

Related[edit]

See also[edit]

Advertising: