You can use the following one-liner bash command to print all files with a specific suffix in the current directory. Replace `your_suffix` with the actual suffix you're interested in (e.g., `.txt`, `.jpg`, etc.):
```bash
ls *your_suffix
```
For example, to print all `.txt` files, you would use:
```bash
ls *.txt
```
If you want to include a detailed view, you can use:
```bash
ls -l *.your_suffix
```
Remember that this will print an error