Source: http://www.syahzul.com/2016/04/06/how-to-install-oci8-on-ubuntu-14-04-and-php-5-6/
This file contains 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
# docker ps -a = Get all containers | |
# grep Exited = Filter the Exited Containers | |
# awk awk '{print $1}' = Filter the first column (ID) | |
docker rm $(docker ps -a | grep Exited | awk '{print $1}') |
This file contains 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
country=BR | |
update_config=1 | |
ctrl_interface=/var/run/wpa_supplicant | |
network={ | |
ssid="networkName" | |
psk="password" | |
key_mgmt=WPA-PSK | |
} |
Command | Description |
---|---|
git init |
Initialize a local Git repository |
git clone ssh://[email protected]/[username]/[repository-name].git |
Create a local copy of a remote repository |
With a clean master branch checked out, you can create a task branch by typing:
initialize git depository in the current directory
git init .
display the git remote/origin
cat .git/config
This file contains 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
# Bookstack | |
mysqldump -u root bookstack > /bkp/mysql/mysql-`hostname`-`date +%Y-%m-%d-`bookstack.sql |
This file contains 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 | |
find /bkp/postgres/ -mtime +2 -exec rm {} \; | |
exit 0 |
This file contains 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
version: "3" | |
services: | |
selenium-hub1: | |
image: selenium/hub:3.141.59-20200409 | |
container_name: selenium-hub1 | |
ports: | |
- "172.16.1.25:4444:4444" | |
environment: | |
- GRID_MAX_SESSION=10 | |
networks: |
This file contains 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
awk -v l=500000 '(NR==1){header=$0;next} | |
(NR%l==2) { | |
close(file); | |
file=sprintf("%s.%0.5d.csv",FILENAME,++c) | |
sub(/csv[.]/,"",file) | |
print header > file | |
} | |
{print > file}' empresas.csv |
This file contains 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
[program:echo-worker] | |
process_name=%(program_name)s_%(process_num)02d | |
directory=/home/$USER/www/portal | |
command=/usr/bin/laravel-echo-server start | |
autostart=true | |
autorestart=true | |
user=$USER | |
numprocs=1 | |
redirect_stderr=true | |
stdout_logfile=/home/$USER/www/echo-worker.log |