mirror of
https://github.com/you-dont-need/You-Dont-Need-GUI.git
synced 2025-08-05 21:07:24 +02:00
Merge pull request #1 from you-dont-need/master
Update to origin/master
This commit is contained in:
@@ -30,6 +30,7 @@ As a computer expert, we want to be more efficient and do our jobs better. We kn
|
|||||||
1. [remove a file](#removefile)
|
1. [remove a file](#removefile)
|
||||||
1. [remove a folder](#removefolder)
|
1. [remove a folder](#removefolder)
|
||||||
1. [list folder contents](#listfolder)
|
1. [list folder contents](#listfolder)
|
||||||
|
1. [tree view a folder and its subfolders](#treeview)
|
||||||
1. [find a stale file](#findfile)
|
1. [find a stale file](#findfile)
|
||||||
1. [show a calendar](#showcal)
|
1. [show a calendar](#showcal)
|
||||||
1. [find a future date](#calcdate)
|
1. [find a future date](#calcdate)
|
||||||
@@ -183,7 +184,14 @@ rm -r my_useless_folder
|
|||||||
```
|
```
|
||||||
ls -la my_folder
|
ls -la my_folder
|
||||||
```
|
```
|
||||||
|
## <a id="treeview"></a>tree view a folder and its subfolders
|
||||||
|
|
||||||
|
**STOP OPENING YOUR FINDER OR FILE EXPLORER**
|
||||||
|
|
||||||
|
```
|
||||||
|
tree # on Linux
|
||||||
|
find . -print | sed -e 's;[^/]*/;|____;g;s;____|; |;g' # on macOS
|
||||||
|
```
|
||||||
## <a id="findfile"></a>find a stale file
|
## <a id="findfile"></a>find a stale file
|
||||||
|
|
||||||
**STOP USING YOUR FILE EXPLORER TO FIND A FILE**
|
**STOP USING YOUR FILE EXPLORER TO FIND A FILE**
|
||||||
|
Reference in New Issue
Block a user