This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
folders='Compressed Documents Images Music Programs Videos' | |
ext_comp="*.zip *.tar.gz" | |
ext_doc="*.htm* *.php *.txt *.css *.doc* *.pdf *.PDF *.ppt* *.js" | |
ext_img="*.jp*g *.JPG *.png *.gif" | |
ext_music="*.mp3 *.aac *.wma *.wav" | |
ext_progrm="*.deb *.exe *.run" | |
ext_vid="*.mp4 *.mkv *.flv *.avi *.webm *.wmv" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Note: This template uses some c++11 functions , so you have to compile it with c++11 flag. | |
* Example:- $ g++ -std=c++11 c++Template.cpp | |
* | |
* Author : Akshay Pratap Singh | |
* Handle: code_crack_01 | |
* | |
*/ | |
/******** All Required Header Files ********/ |