Fix formatting of ps aux command in model card
Browse files
README.md
CHANGED
|
@@ -27,7 +27,7 @@ The following table shows the model's generated descriptions for a standard set
|
|
| 27 |
| `ls -la` | List all files and directories in the current directory tree |
|
| 28 |
| `grep -r "TODO" ./src` | Recursively finds strings with 'TODO' in all files in './src' folder. |
|
| 29 |
| `find . -name "*.py" -mtime -7` | Find all .py files in the current directory tree that were last modified less than 7 days ago |
|
| 30 |
-
| `ps aux
|
| 31 |
| `tar -czvf archive.tar.gz /path/to/directory` | create a compressed archive of "/path/to/directory" |
|
| 32 |
| `docker run -it --rm -p 8080:80 nginx:latest` | Run a Docker container with a custom port 8080 on port 8080 on port 8080 on host "nginx" |
|
| 33 |
| `git checkout -b new-feature` | Create a new feature in the current directory: |
|
|
|
|
| 27 |
| `ls -la` | List all files and directories in the current directory tree |
|
| 28 |
| `grep -r "TODO" ./src` | Recursively finds strings with 'TODO' in all files in './src' folder. |
|
| 29 |
| `find . -name "*.py" -mtime -7` | Find all .py files in the current directory tree that were last modified less than 7 days ago |
|
| 30 |
+
| `ps aux \| grep "python"` | List all running processes whose name contains "python". |
|
| 31 |
| `tar -czvf archive.tar.gz /path/to/directory` | create a compressed archive of "/path/to/directory" |
|
| 32 |
| `docker run -it --rm -p 8080:80 nginx:latest` | Run a Docker container with a custom port 8080 on port 8080 on port 8080 on host "nginx" |
|
| 33 |
| `git checkout -b new-feature` | Create a new feature in the current directory: |
|