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
--- | |
driver: | |
name: vagrant | |
customize: | |
cpus: 1 | |
memory: 2048 | |
verifier: | |
name: inspec |
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
AllCops: | |
DisplayCopNames: true | |
DisplayStyleGuide: true | |
ExtraDetails: false | |
Bundler/DuplicatedGem: | |
Enabled: true | |
Bundler/InsecureProtocolSource: | |
Enabled: true | |
Bundler/OrderedGems: |
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
" enable syntax highlighting | |
syntax enable | |
" show line numbers | |
set number | |
" set tabs to have 4 spaces | |
set ts=4 | |
" indent when moving to the next line while writing code |
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
pacman -Sy archlinux-keyring | |
pacman --init | |
pacman-key --populate archlinux | |
pacman -Su |
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 | |
# You must accept the Oracle Binary Code License | |
# http://www.oracle.com/technetwork/java/javase/terms/license/index.html | |
# usage: get_jdk.sh <ext> <jdk_version> | |
# ext: rpm | |
# jdk_version: default 8 | |
ext=rpm | |
jdk_version=8 |
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/sh | |
cp_p() | |
{ | |
strace -q -ewrite cp -- "${1}" "${2}" 2>&1 \ | |
| awk '{ | |
count += $NF | |
if (count % 10 == 0) { | |
percent = count / total_size * 100 | |
printf "%3d%% [", percent | |
for (i=0;i<=percent;i++) |
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
###################################################################### | |
# CREATING THE TEST APP AND ENVIRONMENT | |
(Log in as a non-root user) | |
mkdir ~/test-1.0 | |
cd ~/test-1.0 | |
echo echo this is a test > test.sh | |
chmod +x test.sh | |
echo just launch the script > README | |
cd | |
mkdir -p ~/rpmbuild/SOURCES |
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
# will catch any records like this: | |
whatever { | |
blah | |
blah | |
} | |
awk -v RS='[^\n]*{|}' 'RT ~ /{/{p=RT} /blah/{ print p $0 RT }' input |
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
for l in open("input"): | |
l=l.strip().split(" ") | |
for c in l[1:]: | |
if ">\"" in c: | |
c=c.split(" ") | |
else: | |
c=c.split() | |
for i in c: | |
if l[1] != i: | |
print "%s %s %s" %(l[0],l[1],i) |
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
num=1 | |
while read line; do | |
if [[ ($num -ge 1) && ($n -le 10) ]]; then | |
echo $line | cat - | |
elif [[ $num -gt 10 ]]; then | |
break | |
fi | |
n=$(( $n + 1 )) |