bash_-_scripts:ll
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
bash_-_scripts:ll [2016/11/09 16:41] – peter | bash_-_scripts:ll [2019/11/29 11:04] (current) – removed peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Bash - Scripts - ll ====== | ||
- | |||
- | Long listing of files | ||
- | |||
- | ===== Usage ===== | ||
- | |||
- | <code bash> | ||
- | ll [-m] [ls options] file [file...] | ||
- | </ | ||
- | |||
- | ===== Code ===== | ||
- | |||
- | <code bash> | ||
- | #!/bin/bash | ||
- | # | ||
- | # @(#) ll v1.0 Long listing of files. | ||
- | |||
- | if [ " | ||
- | then MORE=" | ||
- | shift | ||
- | else MORE="" | ||
- | fi | ||
- | |||
- | eval /bin/ls -al $@ MORE | ||
- | </ | ||
- | |||
- | |||
- | ===== Example ===== | ||
- | |||
- | Issuing a list of files with source code on C language in the long format. | ||
- | |||
- | <code bash> | ||
- | ll *.c | ||
- | </ | ||
- | |||
- | |||
- | Displays a list of all files in the directory /etc, the names of which can be in variance of the word mount (for example, mount, umount, | ||
- | unmountable). | ||
- | |||
- | <code bash> | ||
- | ll / | ||
- | </ | ||
- | |||
- | |||
- | |||
- | First, the **who** command is executed, where the result is passed to the **awk** command , which cuts out the device name and prefixes it with **/ | ||
- | |||
- | <code bash> | ||
- | ll -i `who|awk ' | ||
- | </ | ||
- | |||
- | |||
- | |||
- | Displays a long list format all archive files in a directory /lib. This directory contains library for the system compilers. | ||
- | |||
- | <code bash> | ||
- | ll `kind -a /lib` | ||
- | </ | ||
- | |||
- | |||
- | |||
- | Displays all the usual information plus inode number for all files in the directory /dev a page at a time. | ||
- | |||
- | <code bash> | ||
- | ll -m -i /dev | ||
- | </ | ||
bash_-_scripts/ll.1478709666.txt.gz · Last modified: 2020/07/15 09:30 (external edit)