DeveloperBreeze

Command-Line Development Tutorials, Guides & Insights

Unlock 4+ expert-curated command-line tutorials, real-world code snippets, and modern dev strategies. From fundamentals to advanced topics, boost your command-line skills on DeveloperBreeze.

Getting Started with FFmpeg

Tutorial August 21, 2024

  ffmpeg -i input.mp4 -vf "setpts=0.5*PTS" output.mp4
  • To slow down the video (e.g., 2x slower):

How to view free space on a Linux server

Code August 11, 2024
bash

  • Inodes: To check free inodes instead of disk space, use the -i option:
  df -i

Finding the Top 10 Biggest Files on an Ubuntu Server

Tutorial August 11, 2024
bash

First, you'll need to open a terminal on your Ubuntu server. If you're accessing a remote server, you might use SSH to connect.

Navigate to the directory where you want to search for large files. If you want to search the entire file system, you can skip this step.

Laravel Artisan Commands Cheatsheet

Code August 03, 2024
php bash

  php artisan make:policy PolicyName
  • Create a New Rule