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
function m () { | |
function _usage () | |
{ | |
echo "usage: COMMAND [-inHRp] -p<pattern1> -p<pattern2> <filename>"; | |
echo "-i : ignore case"; | |
echo "-n : show line number"; | |
echo "-H : show filename"; | |
echo "-h : show header"; | |
echo "-p : specify pattern"; | |
echo "-R : search recursively" |
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
# -*- coding: utf-8 -*- | |
# | |
# Description: | |
# Create Java Spring Project | |
artifactId=$1 | |
spring init --groupId=haoru.cisco.com \ | |
--artifactId=$artifactId \ | |
--java-version=1.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/bash | |
#set -x | |
# Shows you the largest objects in your repo's pack file. | |
# Written for osx. | |
# | |
# @see https://stubbisms.wordpress.com/2009/07/10/git-script-to-show-largest-pack-objects-and-trim-your-waist-line/ | |
# @author Antony Stubbs | |
# set the internal field spereator to line break, so that we can iterate easily over the verify-pack output |
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
#!/usr/bin/env bash | |
# -*- coding: utf-8 -*- | |
# Usage: $0 file1 file2 ... | |
# When this exits, exit all back ground process also. | |
trap 'kill $(jobs -p)' EXIT | |
# iterate through the each given file names, | |
for file in "$@"; do |
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
#!/usr/bin/env python3 | |
import requests,re,json,html2text,sys,time | |
import os | |
from bs4 import BeautifulSoup | |
import time | |
from urllib.request import urlretrieve | |
url="https://www.douban.com/group/haixiuzu/" | |
#url="http://127.0.0.1:8080/" |