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 | |
mkdir -p ./{speedup,invert,upload,overlay,downloaded} | |
#find . -type f -name "*.mp4" -exec rm {} \; | |
PLAYLIST="$1" | |
START="$2" | |
END="$3" | |
if [[ ! -z $1 ]]; |
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
<?php | |
class FutebolCard | |
{ | |
const URL = 'https://www.futebolcard.com/site'; | |
const SOON = 'Soon'; | |
protected $token; | |
public function __construct($token) |
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 [ ! -z $(which whiptail) ]; | |
then | |
DIALOGPROGRAM="whiptail" | |
elif [ ! -z $(which dialog) ]; | |
then | |
DIALOGPROGRAM="dialog" | |
else | |
echo -e "You need 'whiptail' or 'dialog' to use this script" |
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 | |
PROJECTPATH=$1 | |
PATHTOSAVE=$2 | |
if [[ -z $PROJECTPATH ]]; then | |
echo "no project path informed!" | |
exit 1 | |
fi |
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 | |
COMMAND=$1 | |
FILE_NAME=$2 | |
LIST_FILE="lista.txt" | |
case $COMMAND in | |
"make10") | |
TIME=$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/bash | |
function doScan() | |
{ | |
MAINFILE=$1 | |
TYPE=$2 | |
PARAM="" | |
BKP_FILE="cscope.files.bak" | |
if [[ $TYPE == "partial" ]] ; then |