Horje
bash return specific lines from history Code Example
bash return specific lines from history
# Basic syntax:
fc -l start_line end_line # or pipe to sed or awk
history | sed -n 'start_line,end_linep'
history | awk 'NR >= start_line && NR <= end_line'




Shell

Related
see ADS content Code Example see ADS content Code Example
oclif export to npm Code Example oclif export to npm Code Example
run git command in different folder Code Example run git command in different folder Code Example
Package python3-pip is not available, but is referred to by another package. This may mean that the package is missing, has been obsoleted, or is only available from another source E: Package Package python3-pip is not available, but is referred to by another package. This may mean that the package is missing, has been obsoleted, or is only available from another source E: Package
23:in `system!': failed to run on-target -u root apt-get update >> var/install.log 2>&1 Code Example 23:in `system!': failed to run on-target -u root apt-get update >> var/install.log 2>&1 Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
13