Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
oh-my-zsh
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
github
oh-my-zsh
Commits
fcd7da3a
Unverified
Commit
fcd7da3a
authored
Dec 29, 2021
by
Majid Hadavand
Committed by
GitHub
Dec 29, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat(common-aliases): add single-column and recursive `ls` aliases (#10096)
parent
8d58994d
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
53 additions
and
49 deletions
+53
-49
README.md
plugins/common-aliases/README.md
+51
-49
common-aliases.plugin.zsh
plugins/common-aliases/common-aliases.plugin.zsh
+2
-0
No files found.
plugins/common-aliases/README.md
View file @
fcd7da3a
...
...
@@ -13,7 +13,7 @@ plugins=(... common-aliases)
### ls command
| Alias | Command | Description |
|
-------|---------------|--------------------------------------------------------------------------------
|
|
----- | ------------ | ---------------------------------------------------------------------------
|
| l |
`ls -lFh`
| List files as a long list, show size, type, human-readable |
| la |
`ls -lAFh`
| List almost all files as a long list show size, type, human-readable |
| lr |
`ls -tRFh`
| List files recursively sorted by date, show type, human-readable |
...
...
@@ -23,11 +23,13 @@ plugins=(... common-aliases)
| lS |
`ls -1FSsh`
| List files showing only size and name sorted by size |
| lart |
`ls -1Fcart`
| List all files sorted in reverse of create/modification time (oldest first) |
| lrt |
`ls -1Fcrt`
| List files sorted in reverse of create/modification time(oldest first) |
| lsr |
`ls -lARFh`
| List all files and directories recursively |
| lsn |
`ls -1`
| List files and directories in a single column |
### File handling
| Alias | Command | Description |
|
-------|-----------------------|------------------------------------------------------------------------------------
|
|
----- | --------------------- | -------------------------------------------------------------------------------
|
| rm |
`rm -i`
| Remove a file |
| cp |
`cp -i`
| Copy a file |
| mv |
`mv -i`
| Move a file |
...
...
@@ -39,7 +41,7 @@ plugins=(... common-aliases)
### find and grep
| Alias | Command | Description |
|
-------|-----------------------------------------------------|-----------------------------------------
|
|
----- | -------------------------------------------------- | ------------------------------------
|
| fd
\*
|
`find . -type d -name`
| Find a directory with the given name |
| ff |
`find . -type f -name`
| Find a file with the given name |
| grep |
`grep --color`
| Searches for a query string |
...
...
@@ -50,7 +52,7 @@ plugins=(... common-aliases)
### Other Aliases
| Alias | Command | Description |
|
-----------|---------------------|-------------------------------------------------------------
|
|
-------- | ------------------ | -----------------------------------------------------------
|
| h |
`history`
| Lists all recently used commands |
| hgrep |
`fc -El 0 \| grep`
| Searches for a word in the list of previously used commands |
| help |
`man`
| Opens up the man page for a command |
...
...
@@ -77,7 +79,7 @@ $ find . -type f 2>/dev/null
```
| Alias | Command | Description |
|
-------|-----------------------------|-------------------------------------------------------------|
|
----- | --------------------------- | ----------------------------------------------------------- |
| H |
`\| head`
| Pipes output to head which outputs the first part of a file |
| T |
`\| tail`
| Pipes output to tail which outputs the last part of a file |
| G |
`\| grep`
| Pipes output to grep to search for some word |
...
...
@@ -98,7 +100,7 @@ that file will be open with `acroread`.
### Reading Docs
| Alias | Command | Description |
|
-------|-------------|-------------------------------------
|
|
----- | ---------- | ----------------------------------
|
| pdf |
`acroread`
| Opens up a document using acroread |
| ps |
`gv`
| Opens up a .ps file using gv |
| dvi |
`xdvi`
| Opens up a .dvi file using xdvi |
...
...
@@ -108,7 +110,7 @@ that file will be open with `acroread`.
### Listing files inside a packed file
| Alias | Command | Description |
|
---------|-------------|-------------------------------------
|
|
------ | ---------- | ---------------------------------
|
| zip |
`unzip -l`
| Lists files inside a .zip file |
| rar |
`unrar l`
| Lists files inside a .rar file |
| tar |
`tar tf`
| Lists files inside a .tar file |
...
...
plugins/common-aliases/common-aliases.plugin.zsh
View file @
fcd7da3a
...
...
@@ -12,6 +12,8 @@ alias ldot='ls -ld .*'
alias
lS
=
'ls -1FSsh'
alias
lart
=
'ls -1Fcart'
alias
lrt
=
'ls -1Fcrt'
alias
lsr
=
'ls -lARFh'
#Recursive list of files and directories
alias
lsn
=
'ls -1'
#A column contains name of files and directories
alias
zshrc
=
'${=EDITOR} ${ZDOTDIR:-$HOME}/.zshrc'
# Quick access to the .zshrc file
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment