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 | |
| if [ $# -eq 0 ] | |
| then | |
| echo 'Usage:largest.sh file|folder path NUMBEROFRECORDS' | |
| exit | |
| fi | |
| DEST=$2 | |
| NUMBEROFRECORDS=10 | |
| if [ -n $3 ] |
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/sh | |
| #Developement programs installation script | |
| #Author: Yasien | |
| sudo apt update | |
| #sublime | |
| wget -qO - https://download.sublimetext.com/sublimehq-pub.gpg | sudo apt-key add - | |
| sudo apt-get install apt-transport-https | |
| echo "deb https://download.sublimetext.com/ apt/stable/" | sudo tee /etc/apt/sources.list.d/sublime-text.list |
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 | |
| #This script works on preparing a clean linux distro to be ready | |
| #for being used for developemnt | |
| #Author: Yasien | |
| while [ true ];do | |
| #Getting input from user about desired operation | |
| cat << EOT | |
| Please Choose an option: |
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
| <template> | |
| <div> | |
| <span class="btn btn-file"> | |
| <i class="fa fa-camera"></i> | |
| <input name="image" type="file" @change="onFileChange" accept="image/*"> | |
| </span> | |
| <div v-if="uploadImage" class="replyImage"> | |
| <img :src="uploadImage" /> | |
| <button @click="removeImage"><i class="fa fa-close"></i></button> | |
| </div> |
NewerOlder