User Tools

Site Tools


bash_-_scripts:ll

Differences

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

Link to this comparison view

Both sides previous revisionPrevious revision
bash_-_scripts:ll [2016/11/09 16:41] peterbash_-_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 ===== 
- 
-<code bash> 
-#!/bin/bash 
-# 
-# @(#) ll v1.0   Long listing of files. 
- 
-if [ "$1" = "-m" ] 
-then MORE="| /usr/bin/more" 
-     shift 
-else MORE="" 
-fi 
- 
-eval /bin/ls -al $@ MORE 
-</code> 
- 
- 
-===== Example ===== 
- 
-Issuing a list of files with source code on C language in the long format. 
- 
-<code bash> 
-ll *.c 
-</code> 
- 
- 
-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 /etc/*mount* 
-</code> 
- 
- 
- 
-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 **/dev/**.  As a result, a list of full path names of all terminal devices registered in the system, is passed to the **ls -li** command line.  The printout returns the information about the inode (inode) for each terminal device due to the **-i** flag. 
- 
-<code bash> 
-ll -i `who|awk '{print "/dev/" $2}'` 
-</code> 
- 
- 
- 
-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` 
-</code> 
- 
- 
- 
-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 
-</code> 
  
bash_-_scripts/ll.1478709666.txt.gz · Last modified: 2020/07/15 09:30 (external edit)

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki