Author: Binny V A
Force Download Dialog with PHP using octect-stream
Use this code to force a download of any type of content with PHP header(“Content-type:application/octect-stream”); header(‘Content-Disposition: attachment; filename=filename_’ . date(‘Y-m-d’)…
Make a File Immutable
Makes a file immutable – it can not be removed, altered, renamed or linked chattr +i file
Move Subfolder Files to Current Folder
This command moves all the files in the subfolder to the current folder. mv */* .
Remove Empty Characters at End of Lines
Remove empty characters at the end of each row sed -e ‘s/ *$//’ file.txt
Fish Shell Command History Meme
Use this command if you want to know your command usage stats in the fish shell. grep -v “^\#” “.config/fish/fish_history”|awk…
Remove all EXE files
Removes all exe files in the current directory tree. Useful to clear virus from flash drives. find . -name “*.exe”…
First Two Lines
View first two lines of a file head -2 file tail -2 file # for last 2 lines
Recent Comments