bash_-_scripts:lc
Differences
This shows you the differences between two versions of the page.
bash_-_scripts:lc [2016/11/09 16:07] – created peter | bash_-_scripts:lc [2019/11/29 11:02] (current) – removed peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Bash - Scripts - lc ====== | ||
- | |||
- | Displays output file information in columns. | ||
- | |||
- | ===== Usage ===== | ||
- | |||
- | <code bash> | ||
- | lc [-m] [ls options] file [file ...] | ||
- | </ | ||
- | |||
- | |||
- | ===== Code ===== | ||
- | |||
- | <code bash> | ||
- | #!/bin/bash | ||
- | # | ||
- | # @(#) lc v1.0 List files in a column. | ||
- | # | ||
- | |||
- | if [ " | ||
- | then MORE=" | ||
- | shift | ||
- | else MORE="" | ||
- | fi | ||
- | |||
- | eval "/ | ||
- | eval /bin/ls -aCF $@ $MORE # System V | ||
- | </ | ||
- | |||
- | ===== Examples ===== | ||
- | |||
- | <code bash> | ||
- | lc -R $HOME | ||
- | </ | ||
- | |||
- | |||
- | Gets the full name for lc and prints file information as speakers. | ||
- | |||
- | <code bash> | ||
- | lc `path lc` | ||
- | </ | ||
- | |||
- | |||
- | Prints columnar list of all files in the system, recursively walking down the tree hierarchy of the system and passing the listing through the more command. | ||
- | |||
- | <WRAP tip> | ||
- | Another little trick: the syntax has been used to create and mark other items. | ||
- | </ | ||
- | |||
- | <code bash> | ||
- | lc -m -R / | ||
- | </ | ||
- | |||
- | |||
- | |||
- | Recursively print a list of all files in all directories starting with /usr/lib, and passes through the results to the more command. | ||
- | |||
- | <code bash> | ||
- | lc -m -R /usr/lib | ||
- | </ | ||
- | |||
- | |||
- | |||
- | <WRAP todo> | ||
- | Print the list of files in the current directory and skip listing human Res team more, and then again passes through all the more. Does | ||
- | this ? No way. There is complete confusion, and key interrupt usually the best way out of this situation. | ||
- | </ | ||
- | |||
- | <code bash> | ||
- | lc -m . | more | ||
- | </ | ||
- | |||
bash_-_scripts/lc.1478707637.txt.gz · Last modified: 2020/07/15 09:30 (external edit)