User Tools

Site Tools


bash_-_scripts:lc

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

bash_-_scripts:lc [2016/11/09 16:07] – created peterbash_-_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 ===== 
- 
-<code bash> 
-#!/bin/bash 
-# 
-# @(#) lc v1.0   List files in a column. 
-# 
- 
-if [ "$1" = "-m" ] 
-then  MORE="| /usr/bin/more" 
-      shift 
-else  MORE="" 
-fi 
- 
-eval "/bin/ls -a $@ | /bin/pr -5t" $MORE   # pre System V 
-eval /bin/ls -aCF $@ $MORE                 # System V 
-</code> 
- 
-===== Examples ===== 
- 
-<code bash> 
-lc -R $HOME 
-</code> 
- 
- 
-Gets the full name for lc and prints file information as speakers. 
- 
-<code bash> 
-lc `path lc` 
-</code> 
- 
- 
-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.  Command Prompt "lc -m -R $@" would give a recursive list of all files in any folder of your choice of page-in a nice format. 
-</WRAP> 
- 
-<code bash> 
-lc -m -R / 
-</code> 
- 
- 
- 
-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 
-</code> 
- 
- 
- 
-<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. 
-</WRAP> 
- 
-<code bash> 
-lc -m . | more 
-</code> 
- 
  
bash_-_scripts/lc.1478707637.txt.gz · Last modified: 2020/07/15 09:30 (external edit)

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki