<Additional information about your API call. Try to use verbs that match both request type (fetching vs modifying) and plurality (one vs multiple).>
-
URL
<The URL Structure (path only, no root url)>
-
Method:
| #!/bin/bash | |
| sudo kextunload -b com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport | |
| sudo kextload -b com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport |
| #!/bin/bash | |
| #miss java instalation | |
| INSTALL_GIT=$(apt-get install git -y) | |
| DOWNLOAD_GVM=$(curl -s get.gvmtool.net | bash) | |
| $INSTALL_GIT | |
| $DOWNLOAD_GVM |
| #!/bin/bash | |
| echo 3 > /proc/sys/vm/drop_caches | |
| sysctl -w vm.drop_caches=3 |
| #!/bin/bash | |
| #MAKE BACKUP | |
| mysqldump -u root -h $2 -p$1 --no-create-db --no-create-info --skip-add-drop-table --complete-insert $3 > /$5/$3.sql | |
| if [[ $? != 0 ]] | |
| then | |
| exit 0 | |
| fi | |
| echo "" > outputTable.txt |
| #!/bin/bash | |
| echo "source $1" >> /etc/profile |
| #!/bin/bash | |
| function migrateVar { | |
| source $1 | |
| export $(cut -d= -f1 $1) | |
| } | |
| migrateVar |