WF AQ

Knowledge base

25 Settembre 2018
di admin@admin
Commenti disabilitati su Creating Unique Title Slugs with Laravel

Creating Unique Title Slugs with Laravel

When storing content in the database a typical pattern for retrieving it is to create a unique “slug” based on the title. This gives users and search engines a human-friendly way to access it through the URL. For example, a … Continua a leggere

6 Settembre 2018
di admin@admin
Commenti disabilitati su Linux grep command

Linux grep command

The grep command syntax The syntax is as follows: grep ‘word’ filename grep ‘word’ file1 file2 file3 grep ‘string1 string2’ filename cat otherfile | grep ‘something’ command | grep ‘something’ command option1 | grep ‘data’ grep –color ‘data’ fileName How … Continua a leggere