Compare commits

...

2 Commits

Author SHA1 Message Date
James Skemp 4b5ffac3f2 Add Linux command to list files by date 2023-09-10 16:57:54 -05:00
James Skemp 1ccc5b85e8 Add command to remove Docker images 2023-09-10 16:43:01 -05:00
2 changed files with 7 additions and 0 deletions

View File

@ -25,6 +25,9 @@ docker search <term>
# Show all downloaded images.
docker images
# Remove an image.
docker rmi <image-id>
```
## Containers

View File

@ -80,6 +80,10 @@ sudo lsblk -f -m
# View the total size of a directory.
sudo du -sh /path/to/directory
# Get all .mp4 files sorted by date and showing date, folder name, file name, and size.
# Excludes ._ and .DS_Store files (macOS).
find . -type f -name "*.mp4" ! -name "._*" ! -name ".DS_Store" -printf "%CY-%Cm-%Cd %CT %h %f %s\n" | sort -n
```
### Navigation