man Command
How to view a large file content on Ubuntu
less .bashrc
How to view a small file content on Ubuntu
cat /etc/lsb-release
How to find the path to a command on Ubuntu
which ls
How to list directory contents on Ubuntu
ls -al
How to reboot Ubuntu
sudo reboot
How to generate an API singleton resource controller in Laravel
php artisan make:controller ProfileController --singleton --api
Route::apiSingleton('profile', ProfileController::class);
How to generate a singleton resource controller in Laravel
php artisan make:controller ProfileController --singleton
Route::singleton('profile', ProfileController::class);
How to search multiple keywords in all files under each directory using grep
grep -Eir "keyword1|keyword2|keyword3" directory1 directory2 directory3 ...
How to generate a nested resource controller in Laravel
php artisan make:controller CommentController --model=Comment --parent=Post
Route::resource('posts.comments', CommentController::class);