SlideShare une entreprise Scribd logo
grep
find Grep uniq cut sed while do
do find Grep uniq cut sed while
while do find Grep uniq cut sed
sed while do find Grep uniq cut
cut sed while do find Grep uniq
Grep uniq cut sed while do find
find Grep uniq cut sed while do
do find Grep uniq cut sed while
while do find Grep uniq cut sed
sed while do find Grep uniq cut
cut sed while do find Grep uniq
伝えたいこと
grepで出来な
い検索は無い!
find Grep uniq cut sed while do
do find Grep uniq cut sed while
while do find Grep uniq cut sed
sed while do find Grep uniq cut
cut sed while do find Grep uniq
Grep uniq cut sed while do find
find Grep uniq cut sed while do
do find Grep uniq cut sed while
while do find Grep uniq cut sed
sed while do find Grep uniq cut
cut sed while do find Grep uniq
経歴・スキル
•経歴
Future中途5年目のgreper
•スキルセット
grep+α
•得意なgrepコンボ
find -> grep -> cut -> sort -> uniq ->
while ->find -> grep -> awk!!!!
だいたいこれでワンパン出来
るぞ!
当然ワンライナーだ!
find Grep uniq cut sed while do
do find Grep uniq cut sed while
while do find Grep uniq cut sed
sed while do find Grep uniq cut
cut sed while do find Grep uniq
Grep uniq cut sed while do find
find Grep uniq cut sed while do
do find Grep uniq cut sed while
while do find Grep uniq cut sed
sed while do find Grep uniq cut
cut sed while do find Grep uniq
社内Greperを勝手に代表
して語らせてもらいます!
ツッコミは終わってからこっそりお願いします。。。
find Grep uniq cut sed while do
do find Grep uniq cut sed while
while do find Grep uniq cut sed
sed while do find Grep uniq cut
cut sed while do find Grep uniq
Grep uniq cut sed while do find
find Grep uniq cut sed while do
do find Grep uniq cut sed while
while do find Grep uniq cut sed
sed while do find Grep uniq cut
cut sed while do find Grep uniq
ここからの内容は日常で
は99%、
お仕事でも95%不要な
自己満足です。
find Grep uniq cut sed while do
do find Grep uniq cut sed while
while do find Grep uniq cut sed
sed while do find Grep uniq cut
cut sed while do find Grep uniq
Grep uniq cut sed while do find
find Grep uniq cut sed while do
do find Grep uniq cut sed while
while do find Grep uniq cut sed
sed while do find Grep uniq cut
cut sed while do find Grep uniq
!!!警告!!!
こんな人を対象にしてます
grep = 手足の様に使える
find =もはやgrepのオプションだよね?
while = もはや(ry
cut/sed/tr/sed/uniq/awk = (ry
find Grep uniq cut sed while do
do find Grep uniq cut sed while
while do find Grep uniq cut sed
sed while do find Grep uniq cut
cut sed while do find Grep uniq
Grep uniq cut sed while do find
find Grep uniq cut sed while do
do find Grep uniq cut sed while
while do find Grep uniq cut sed
sed while do find Grep uniq cut
cut sed while do find Grep uniq
お題
find Grep uniq cut sed while do
do find Grep uniq cut sed while
while do find Grep uniq cut sed
sed while do find Grep uniq cut
cut sed while do find Grep uniq
Grep uniq cut sed while do find
find Grep uniq cut sed while do
do find Grep uniq cut sed while
while do find Grep uniq cut sed
sed while do find Grep uniq cut
cut sed while do find Grep uniq
Grep使ってソース解析!
某L案件のBがつくFWを使ったSアプ
リを解析!
画面のmethod単位にテーブルまでの
経路をgrepで出力だ!
find Grep uniq cut sed while do
do find Grep uniq cut sed while
while do find Grep uniq cut sed
sed while do find Grep uniq cut
cut sed while do find Grep uniq
Grep uniq cut sed while do find
find Grep uniq cut sed while do
do find Grep uniq cut sed while
while do find Grep uniq cut sed
sed while do find Grep uniq cut
cut sed while do find Grep uniq
DBLogicWEB
Grep使ってソース解析!
動機
何故かドキュメントからCRUDを追えず、各種調査の
為にはソースから追うしか無かった。
Action Facade Logic
Logic SQL
SQL
table
table
1:1 1:n 1:1 1:n
1:n
1:1
Util Action
この画面で
使っている
コレ知りた
い!
find Grep uniq cut sed while do
do find Grep uniq cut sed while
while do find Grep uniq cut sed
sed while do find Grep uniq cut
cut sed while do find Grep uniq
Grep uniq cut sed while do find
find Grep uniq cut sed while do
do find Grep uniq cut sed while
while do find Grep uniq cut sed
sed while do find Grep uniq cut
cut sed while do find Grep uniq
Grep使ってソース解析!
解析の概要
Import ….XXXX
public/private/prote
cted..(){
…
}
public/private/prote
cted..(){
XXXX.YYY
}
public/private/prote
cted.. YYY(){
…ZZZZ
}
Import ….ZZZZ
① findでHTTPを受けるActionを探す
② ImportにTARGETになるClassが含まれているか
grep
③ 読んでいるmethodを上からgrep
④ 読んでいたらネストしてやっぱり2-3を繰り返す
…繰り返す
find Grep uniq cut sed while do
do find Grep uniq cut sed while
while do find Grep uniq cut sed
sed while do find Grep uniq cut
cut sed while do find Grep uniq
Grep uniq cut sed while do find
find Grep uniq cut sed while do
do find Grep uniq cut sed while
while do find Grep uniq cut sed
sed while do find Grep uniq cut
cut sed while do find Grep uniq
Grep使ってソース解析!
結果
実演が流行りらしいので、動かして
みます
find Grep uniq cut sed while do
do find Grep uniq cut sed while
while do find Grep uniq cut sed
sed while do find Grep uniq cut
cut sed while do find Grep uniq
Grep uniq cut sed while do find
find Grep uniq cut sed while do
do find Grep uniq cut sed while
while do find Grep uniq cut sed
sed while do find Grep uniq cut
cut sed while do find Grep uniq
Grep使ってソース解析!
自己満ロジック
Method判定処理
grep -nE "(protected|private|public) .*("
${FILE_NAME}|grep -A 1 "${METHOD}"|cut -d: -f1
278: public void ${METHOD} () {
290: public void ${NEXT_METHOD}() {
grepで検索したいMethodを引っ掛けて、次のMethodの行
数からMethodの範囲を判定!
find Grep uniq cut sed while do
do find Grep uniq cut sed while
while do find Grep uniq cut sed
sed while do find Grep uniq cut
cut sed while do find Grep uniq
Grep uniq cut sed while do find
find Grep uniq cut sed while do
do find Grep uniq cut sed while
while do find Grep uniq cut sed
sed while do find Grep uniq cut
cut sed while do find Grep uniq
Grep使ってソース解析!
自己満ロジック
Methodの中から目的のmethod Call判定
cat ${IMPLE} | head -$((METHOD_END-1)) | tail -`expr
$((METHOD_END-1)) - $((METHOD_START+0)) + 1`|grep -ic
${CALL}
public void ${METHOD} () {
・・・・
${CALL}
・・・・
}
grepでMethodを抜いて、methodのcall判定!
find Grep uniq cut sed while do
do find Grep uniq cut sed while
while do find Grep uniq cut sed
sed while do find Grep uniq cut
cut sed while do find Grep uniq
Grep uniq cut sed while do find
find Grep uniq cut sed while do
do find Grep uniq cut sed while
while do find Grep uniq cut sed
sed while do find Grep uniq cut
cut sed while do find Grep uniq
書いたソース
動機
生々しかったり汚かったり
色々あるけど、急いでたか
ら許して・・・
find Grep uniq cut sed while do
do find Grep uniq cut sed while
while do find Grep uniq cut sed
sed while do find Grep uniq cut
cut sed while do find Grep uniq
Grep uniq cut sed while do find
find Grep uniq cut sed while do
do find Grep uniq cut sed while
while do find Grep uniq cut sed
sed while do find Grep uniq cut
cut sed while do find Grep uniq
実行したコマンド利用回数
コマンド 使った回数
grep 17回(ソースが糞だから?
find 15回
while 10回
sort 5回
uniq 4回
awk 4回
解析したソース
find Grep uniq cut sed while do
do find Grep uniq cut sed while
while do find Grep uniq cut sed
sed while do find Grep uniq cut
cut sed while do find Grep uniq
Grep uniq cut sed while do find
find Grep uniq cut sed while do
do find Grep uniq cut sed while
while do find Grep uniq cut sed
sed while do find Grep uniq cut
cut sed while do find Grep uniq
感想
grep やっぱりすげー
糞ループでこの速度
スピード感半端ないっす
ルールさえ判れば何でも抜ける気が
しました。
find Grep uniq cut sed while do
do find Grep uniq cut sed while
while do find Grep uniq cut sed
sed while do find Grep uniq cut
cut sed while do find Grep uniq
Grep uniq cut sed while do find
find Grep uniq cut sed while do
do find Grep uniq cut sed while
while do find Grep uniq cut sed
sed while do find Grep uniq cut
cut sed while do find Grep uniq
まとめ
find Grep uniq cut sed while do
do find Grep uniq cut sed while
while do find Grep uniq cut sed
sed while do find Grep uniq cut
cut sed while do find Grep uniq
Grep uniq cut sed while do find
find Grep uniq cut sed while do
do find Grep uniq cut sed while
while do find Grep uniq cut sed
sed while do find Grep uniq cut
cut sed while do find Grep uniq
grep の鉄則
ルール化できれば
勝ったも同然
find Grep uniq cut sed while do
do find Grep uniq cut sed while
while do find Grep uniq cut sed
sed while do find Grep uniq cut
cut sed while do find Grep uniq
Grep uniq cut sed while do find
find Grep uniq cut sed while do
do find Grep uniq cut sed while
while do find Grep uniq cut sed
sed while do find Grep uniq cut
cut sed while do find Grep uniq
トレンドから外れようが良い
ものは良い。
grepを使いこなすとServer
からテキストファイルをダウ
ンロードしてExcelで解析と
かいう謎行動が激減するので
使ってみてね!
find Grep uniq cut sed while do
do find Grep uniq cut sed while
while do find Grep uniq cut sed
sed while do find Grep uniq cut
cut sed while do find Grep uniq
Grep uniq cut sed while do find
find Grep uniq cut sed while do
do find Grep uniq cut sed while
while do find Grep uniq cut sed
sed while do find Grep uniq cut
cut sed while do find Grep uniq
やっぱり
grepで出来
ない検索は無
かった!

Contenu connexe

Dernier

J-Spring 2024 - Going serverless with Quarkus, GraalVM native images and AWS ...
J-Spring 2024 - Going serverless with Quarkus, GraalVM native images and AWS ...J-Spring 2024 - Going serverless with Quarkus, GraalVM native images and AWS ...
J-Spring 2024 - Going serverless with Quarkus, GraalVM native images and AWS ...
Bert Jan Schrijver
 
42 Ways to Generate Real Estate Leads - Sellxpert
42 Ways to Generate Real Estate Leads - Sellxpert42 Ways to Generate Real Estate Leads - Sellxpert
42 Ways to Generate Real Estate Leads - Sellxpert
vaishalijagtap12
 
一比一原版(UMN毕业证)明尼苏达大学毕业证如何办理
一比一原版(UMN毕业证)明尼苏达大学毕业证如何办理一比一原版(UMN毕业证)明尼苏达大学毕业证如何办理
一比一原版(UMN毕业证)明尼苏达大学毕业证如何办理
dakas1
 
TMU毕业证书精仿办理
TMU毕业证书精仿办理TMU毕业证书精仿办理
TMU毕业证书精仿办理
aeeva
 
Alluxio Webinar | 10x Faster Trino Queries on Your Data Platform
Alluxio Webinar | 10x Faster Trino Queries on Your Data PlatformAlluxio Webinar | 10x Faster Trino Queries on Your Data Platform
Alluxio Webinar | 10x Faster Trino Queries on Your Data Platform
Alluxio, Inc.
 
Mobile App Development Company In Noida | Drona Infotech
Mobile App Development Company In Noida | Drona InfotechMobile App Development Company In Noida | Drona Infotech
Mobile App Development Company In Noida | Drona Infotech
Drona Infotech
 
14 th Edition of International conference on computer vision
14 th Edition of International conference on computer vision14 th Edition of International conference on computer vision
14 th Edition of International conference on computer vision
ShulagnaSarkar2
 
What is Continuous Testing in DevOps - A Definitive Guide.pdf
What is Continuous Testing in DevOps - A Definitive Guide.pdfWhat is Continuous Testing in DevOps - A Definitive Guide.pdf
What is Continuous Testing in DevOps - A Definitive Guide.pdf
kalichargn70th171
 
Beginner's Guide to Observability@Devoxx PL 2024
Beginner's  Guide to Observability@Devoxx PL 2024Beginner's  Guide to Observability@Devoxx PL 2024
Beginner's Guide to Observability@Devoxx PL 2024
michniczscribd
 
Optimizing Your E-commerce with WooCommerce.pptx
Optimizing Your E-commerce with WooCommerce.pptxOptimizing Your E-commerce with WooCommerce.pptx
Optimizing Your E-commerce with WooCommerce.pptx
WebConnect Pvt Ltd
 
Why Apache Kafka Clusters Are Like Galaxies (And Other Cosmic Kafka Quandarie...
Why Apache Kafka Clusters Are Like Galaxies (And Other Cosmic Kafka Quandarie...Why Apache Kafka Clusters Are Like Galaxies (And Other Cosmic Kafka Quandarie...
Why Apache Kafka Clusters Are Like Galaxies (And Other Cosmic Kafka Quandarie...
Paul Brebner
 
Stork Product Overview: An AI-Powered Autonomous Delivery Fleet
Stork Product Overview: An AI-Powered Autonomous Delivery FleetStork Product Overview: An AI-Powered Autonomous Delivery Fleet
Stork Product Overview: An AI-Powered Autonomous Delivery Fleet
Vince Scalabrino
 
ACE - Team 24 Wrapup event at ahmedabad.
ACE - Team 24 Wrapup event at ahmedabad.ACE - Team 24 Wrapup event at ahmedabad.
ACE - Team 24 Wrapup event at ahmedabad.
Maitrey Patel
 
A Comprehensive Guide on Implementing Real-World Mobile Testing Strategies fo...
A Comprehensive Guide on Implementing Real-World Mobile Testing Strategies fo...A Comprehensive Guide on Implementing Real-World Mobile Testing Strategies fo...
A Comprehensive Guide on Implementing Real-World Mobile Testing Strategies fo...
kalichargn70th171
 
Upturn India Technologies - Web development company in Nashik
Upturn India Technologies - Web development company in NashikUpturn India Technologies - Web development company in Nashik
Upturn India Technologies - Web development company in Nashik
Upturn India Technologies
 
Safelyio Toolbox Talk Softwate & App (How To Digitize Safety Meetings)
Safelyio Toolbox Talk Softwate & App (How To Digitize Safety Meetings)Safelyio Toolbox Talk Softwate & App (How To Digitize Safety Meetings)
Safelyio Toolbox Talk Softwate & App (How To Digitize Safety Meetings)
safelyiotech
 
ppt on the brain chip neuralink.pptx
ppt  on   the brain  chip neuralink.pptxppt  on   the brain  chip neuralink.pptx
ppt on the brain chip neuralink.pptx
Reetu63
 
美洲杯赔率投注网【​网址​🎉3977·EE​🎉】
美洲杯赔率投注网【​网址​🎉3977·EE​🎉】美洲杯赔率投注网【​网址​🎉3977·EE​🎉】
美洲杯赔率投注网【​网址​🎉3977·EE​🎉】
widenerjobeyrl638
 
如何办理(hull学位证书)英国赫尔大学毕业证硕士文凭原版一模一样
如何办理(hull学位证书)英国赫尔大学毕业证硕士文凭原版一模一样如何办理(hull学位证书)英国赫尔大学毕业证硕士文凭原版一模一样
如何办理(hull学位证书)英国赫尔大学毕业证硕士文凭原版一模一样
gapen1
 
The Role of DevOps in Digital Transformation.pdf
The Role of DevOps in Digital Transformation.pdfThe Role of DevOps in Digital Transformation.pdf
The Role of DevOps in Digital Transformation.pdf
mohitd6
 

Dernier (20)

J-Spring 2024 - Going serverless with Quarkus, GraalVM native images and AWS ...
J-Spring 2024 - Going serverless with Quarkus, GraalVM native images and AWS ...J-Spring 2024 - Going serverless with Quarkus, GraalVM native images and AWS ...
J-Spring 2024 - Going serverless with Quarkus, GraalVM native images and AWS ...
 
42 Ways to Generate Real Estate Leads - Sellxpert
42 Ways to Generate Real Estate Leads - Sellxpert42 Ways to Generate Real Estate Leads - Sellxpert
42 Ways to Generate Real Estate Leads - Sellxpert
 
一比一原版(UMN毕业证)明尼苏达大学毕业证如何办理
一比一原版(UMN毕业证)明尼苏达大学毕业证如何办理一比一原版(UMN毕业证)明尼苏达大学毕业证如何办理
一比一原版(UMN毕业证)明尼苏达大学毕业证如何办理
 
TMU毕业证书精仿办理
TMU毕业证书精仿办理TMU毕业证书精仿办理
TMU毕业证书精仿办理
 
Alluxio Webinar | 10x Faster Trino Queries on Your Data Platform
Alluxio Webinar | 10x Faster Trino Queries on Your Data PlatformAlluxio Webinar | 10x Faster Trino Queries on Your Data Platform
Alluxio Webinar | 10x Faster Trino Queries on Your Data Platform
 
Mobile App Development Company In Noida | Drona Infotech
Mobile App Development Company In Noida | Drona InfotechMobile App Development Company In Noida | Drona Infotech
Mobile App Development Company In Noida | Drona Infotech
 
14 th Edition of International conference on computer vision
14 th Edition of International conference on computer vision14 th Edition of International conference on computer vision
14 th Edition of International conference on computer vision
 
What is Continuous Testing in DevOps - A Definitive Guide.pdf
What is Continuous Testing in DevOps - A Definitive Guide.pdfWhat is Continuous Testing in DevOps - A Definitive Guide.pdf
What is Continuous Testing in DevOps - A Definitive Guide.pdf
 
Beginner's Guide to Observability@Devoxx PL 2024
Beginner's  Guide to Observability@Devoxx PL 2024Beginner's  Guide to Observability@Devoxx PL 2024
Beginner's Guide to Observability@Devoxx PL 2024
 
Optimizing Your E-commerce with WooCommerce.pptx
Optimizing Your E-commerce with WooCommerce.pptxOptimizing Your E-commerce with WooCommerce.pptx
Optimizing Your E-commerce with WooCommerce.pptx
 
Why Apache Kafka Clusters Are Like Galaxies (And Other Cosmic Kafka Quandarie...
Why Apache Kafka Clusters Are Like Galaxies (And Other Cosmic Kafka Quandarie...Why Apache Kafka Clusters Are Like Galaxies (And Other Cosmic Kafka Quandarie...
Why Apache Kafka Clusters Are Like Galaxies (And Other Cosmic Kafka Quandarie...
 
Stork Product Overview: An AI-Powered Autonomous Delivery Fleet
Stork Product Overview: An AI-Powered Autonomous Delivery FleetStork Product Overview: An AI-Powered Autonomous Delivery Fleet
Stork Product Overview: An AI-Powered Autonomous Delivery Fleet
 
ACE - Team 24 Wrapup event at ahmedabad.
ACE - Team 24 Wrapup event at ahmedabad.ACE - Team 24 Wrapup event at ahmedabad.
ACE - Team 24 Wrapup event at ahmedabad.
 
A Comprehensive Guide on Implementing Real-World Mobile Testing Strategies fo...
A Comprehensive Guide on Implementing Real-World Mobile Testing Strategies fo...A Comprehensive Guide on Implementing Real-World Mobile Testing Strategies fo...
A Comprehensive Guide on Implementing Real-World Mobile Testing Strategies fo...
 
Upturn India Technologies - Web development company in Nashik
Upturn India Technologies - Web development company in NashikUpturn India Technologies - Web development company in Nashik
Upturn India Technologies - Web development company in Nashik
 
Safelyio Toolbox Talk Softwate & App (How To Digitize Safety Meetings)
Safelyio Toolbox Talk Softwate & App (How To Digitize Safety Meetings)Safelyio Toolbox Talk Softwate & App (How To Digitize Safety Meetings)
Safelyio Toolbox Talk Softwate & App (How To Digitize Safety Meetings)
 
ppt on the brain chip neuralink.pptx
ppt  on   the brain  chip neuralink.pptxppt  on   the brain  chip neuralink.pptx
ppt on the brain chip neuralink.pptx
 
美洲杯赔率投注网【​网址​🎉3977·EE​🎉】
美洲杯赔率投注网【​网址​🎉3977·EE​🎉】美洲杯赔率投注网【​网址​🎉3977·EE​🎉】
美洲杯赔率投注网【​网址​🎉3977·EE​🎉】
 
如何办理(hull学位证书)英国赫尔大学毕业证硕士文凭原版一模一样
如何办理(hull学位证书)英国赫尔大学毕业证硕士文凭原版一模一样如何办理(hull学位证书)英国赫尔大学毕业证硕士文凭原版一模一样
如何办理(hull学位证书)英国赫尔大学毕业证硕士文凭原版一模一样
 
The Role of DevOps in Digital Transformation.pdf
The Role of DevOps in Digital Transformation.pdfThe Role of DevOps in Digital Transformation.pdf
The Role of DevOps in Digital Transformation.pdf
 

En vedette

2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot
Marius Sescu
 
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPT
Expeed Software
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage Engineerings
Pixeldarts
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
ThinkNow
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
marketingartwork
 
Skeleton Culture Code
Skeleton Culture CodeSkeleton Culture Code
Skeleton Culture Code
Skeleton Technologies
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024
Neil Kimberley
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)
contently
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
Albert Qian
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
Kurio // The Social Media Age(ncy)
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
Search Engine Journal
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
SpeakerHub
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next
Tessa Mero
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Lily Ray
 
How to have difficult conversations
How to have difficult conversations How to have difficult conversations
How to have difficult conversations
Rajiv Jayarajah, MAppComm, ACC
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
Christy Abraham Joy
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best Practices
Vit Horky
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project management
MindGenius
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
RachelPearson36
 

En vedette (20)

2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot
 
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPT
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage Engineerings
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
 
Skeleton Culture Code
Skeleton Culture CodeSkeleton Culture Code
Skeleton Culture Code
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
 
How to have difficult conversations
How to have difficult conversations How to have difficult conversations
How to have difficult conversations
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best Practices
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project management
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
 

Grep

  • 2. find Grep uniq cut sed while do do find Grep uniq cut sed while while do find Grep uniq cut sed sed while do find Grep uniq cut cut sed while do find Grep uniq Grep uniq cut sed while do find find Grep uniq cut sed while do do find Grep uniq cut sed while while do find Grep uniq cut sed sed while do find Grep uniq cut cut sed while do find Grep uniq 伝えたいこと grepで出来な い検索は無い!
  • 3. find Grep uniq cut sed while do do find Grep uniq cut sed while while do find Grep uniq cut sed sed while do find Grep uniq cut cut sed while do find Grep uniq Grep uniq cut sed while do find find Grep uniq cut sed while do do find Grep uniq cut sed while while do find Grep uniq cut sed sed while do find Grep uniq cut cut sed while do find Grep uniq 経歴・スキル •経歴 Future中途5年目のgreper •スキルセット grep+α •得意なgrepコンボ find -> grep -> cut -> sort -> uniq -> while ->find -> grep -> awk!!!! だいたいこれでワンパン出来 るぞ! 当然ワンライナーだ!
  • 4. find Grep uniq cut sed while do do find Grep uniq cut sed while while do find Grep uniq cut sed sed while do find Grep uniq cut cut sed while do find Grep uniq Grep uniq cut sed while do find find Grep uniq cut sed while do do find Grep uniq cut sed while while do find Grep uniq cut sed sed while do find Grep uniq cut cut sed while do find Grep uniq 社内Greperを勝手に代表 して語らせてもらいます! ツッコミは終わってからこっそりお願いします。。。
  • 5. find Grep uniq cut sed while do do find Grep uniq cut sed while while do find Grep uniq cut sed sed while do find Grep uniq cut cut sed while do find Grep uniq Grep uniq cut sed while do find find Grep uniq cut sed while do do find Grep uniq cut sed while while do find Grep uniq cut sed sed while do find Grep uniq cut cut sed while do find Grep uniq ここからの内容は日常で は99%、 お仕事でも95%不要な 自己満足です。
  • 6. find Grep uniq cut sed while do do find Grep uniq cut sed while while do find Grep uniq cut sed sed while do find Grep uniq cut cut sed while do find Grep uniq Grep uniq cut sed while do find find Grep uniq cut sed while do do find Grep uniq cut sed while while do find Grep uniq cut sed sed while do find Grep uniq cut cut sed while do find Grep uniq !!!警告!!! こんな人を対象にしてます grep = 手足の様に使える find =もはやgrepのオプションだよね? while = もはや(ry cut/sed/tr/sed/uniq/awk = (ry
  • 7. find Grep uniq cut sed while do do find Grep uniq cut sed while while do find Grep uniq cut sed sed while do find Grep uniq cut cut sed while do find Grep uniq Grep uniq cut sed while do find find Grep uniq cut sed while do do find Grep uniq cut sed while while do find Grep uniq cut sed sed while do find Grep uniq cut cut sed while do find Grep uniq お題
  • 8. find Grep uniq cut sed while do do find Grep uniq cut sed while while do find Grep uniq cut sed sed while do find Grep uniq cut cut sed while do find Grep uniq Grep uniq cut sed while do find find Grep uniq cut sed while do do find Grep uniq cut sed while while do find Grep uniq cut sed sed while do find Grep uniq cut cut sed while do find Grep uniq Grep使ってソース解析! 某L案件のBがつくFWを使ったSアプ リを解析! 画面のmethod単位にテーブルまでの 経路をgrepで出力だ!
  • 9. find Grep uniq cut sed while do do find Grep uniq cut sed while while do find Grep uniq cut sed sed while do find Grep uniq cut cut sed while do find Grep uniq Grep uniq cut sed while do find find Grep uniq cut sed while do do find Grep uniq cut sed while while do find Grep uniq cut sed sed while do find Grep uniq cut cut sed while do find Grep uniq DBLogicWEB Grep使ってソース解析! 動機 何故かドキュメントからCRUDを追えず、各種調査の 為にはソースから追うしか無かった。 Action Facade Logic Logic SQL SQL table table 1:1 1:n 1:1 1:n 1:n 1:1 Util Action この画面で 使っている コレ知りた い!
  • 10. find Grep uniq cut sed while do do find Grep uniq cut sed while while do find Grep uniq cut sed sed while do find Grep uniq cut cut sed while do find Grep uniq Grep uniq cut sed while do find find Grep uniq cut sed while do do find Grep uniq cut sed while while do find Grep uniq cut sed sed while do find Grep uniq cut cut sed while do find Grep uniq Grep使ってソース解析! 解析の概要 Import ….XXXX public/private/prote cted..(){ … } public/private/prote cted..(){ XXXX.YYY } public/private/prote cted.. YYY(){ …ZZZZ } Import ….ZZZZ ① findでHTTPを受けるActionを探す ② ImportにTARGETになるClassが含まれているか grep ③ 読んでいるmethodを上からgrep ④ 読んでいたらネストしてやっぱり2-3を繰り返す …繰り返す
  • 11. find Grep uniq cut sed while do do find Grep uniq cut sed while while do find Grep uniq cut sed sed while do find Grep uniq cut cut sed while do find Grep uniq Grep uniq cut sed while do find find Grep uniq cut sed while do do find Grep uniq cut sed while while do find Grep uniq cut sed sed while do find Grep uniq cut cut sed while do find Grep uniq Grep使ってソース解析! 結果 実演が流行りらしいので、動かして みます
  • 12. find Grep uniq cut sed while do do find Grep uniq cut sed while while do find Grep uniq cut sed sed while do find Grep uniq cut cut sed while do find Grep uniq Grep uniq cut sed while do find find Grep uniq cut sed while do do find Grep uniq cut sed while while do find Grep uniq cut sed sed while do find Grep uniq cut cut sed while do find Grep uniq Grep使ってソース解析! 自己満ロジック Method判定処理 grep -nE "(protected|private|public) .*(" ${FILE_NAME}|grep -A 1 "${METHOD}"|cut -d: -f1 278: public void ${METHOD} () { 290: public void ${NEXT_METHOD}() { grepで検索したいMethodを引っ掛けて、次のMethodの行 数からMethodの範囲を判定!
  • 13. find Grep uniq cut sed while do do find Grep uniq cut sed while while do find Grep uniq cut sed sed while do find Grep uniq cut cut sed while do find Grep uniq Grep uniq cut sed while do find find Grep uniq cut sed while do do find Grep uniq cut sed while while do find Grep uniq cut sed sed while do find Grep uniq cut cut sed while do find Grep uniq Grep使ってソース解析! 自己満ロジック Methodの中から目的のmethod Call判定 cat ${IMPLE} | head -$((METHOD_END-1)) | tail -`expr $((METHOD_END-1)) - $((METHOD_START+0)) + 1`|grep -ic ${CALL} public void ${METHOD} () { ・・・・ ${CALL} ・・・・ } grepでMethodを抜いて、methodのcall判定!
  • 14. find Grep uniq cut sed while do do find Grep uniq cut sed while while do find Grep uniq cut sed sed while do find Grep uniq cut cut sed while do find Grep uniq Grep uniq cut sed while do find find Grep uniq cut sed while do do find Grep uniq cut sed while while do find Grep uniq cut sed sed while do find Grep uniq cut cut sed while do find Grep uniq 書いたソース 動機 生々しかったり汚かったり 色々あるけど、急いでたか ら許して・・・
  • 15. find Grep uniq cut sed while do do find Grep uniq cut sed while while do find Grep uniq cut sed sed while do find Grep uniq cut cut sed while do find Grep uniq Grep uniq cut sed while do find find Grep uniq cut sed while do do find Grep uniq cut sed while while do find Grep uniq cut sed sed while do find Grep uniq cut cut sed while do find Grep uniq 実行したコマンド利用回数 コマンド 使った回数 grep 17回(ソースが糞だから? find 15回 while 10回 sort 5回 uniq 4回 awk 4回 解析したソース
  • 16. find Grep uniq cut sed while do do find Grep uniq cut sed while while do find Grep uniq cut sed sed while do find Grep uniq cut cut sed while do find Grep uniq Grep uniq cut sed while do find find Grep uniq cut sed while do do find Grep uniq cut sed while while do find Grep uniq cut sed sed while do find Grep uniq cut cut sed while do find Grep uniq 感想 grep やっぱりすげー 糞ループでこの速度 スピード感半端ないっす ルールさえ判れば何でも抜ける気が しました。
  • 17. find Grep uniq cut sed while do do find Grep uniq cut sed while while do find Grep uniq cut sed sed while do find Grep uniq cut cut sed while do find Grep uniq Grep uniq cut sed while do find find Grep uniq cut sed while do do find Grep uniq cut sed while while do find Grep uniq cut sed sed while do find Grep uniq cut cut sed while do find Grep uniq まとめ
  • 18. find Grep uniq cut sed while do do find Grep uniq cut sed while while do find Grep uniq cut sed sed while do find Grep uniq cut cut sed while do find Grep uniq Grep uniq cut sed while do find find Grep uniq cut sed while do do find Grep uniq cut sed while while do find Grep uniq cut sed sed while do find Grep uniq cut cut sed while do find Grep uniq grep の鉄則 ルール化できれば 勝ったも同然
  • 19. find Grep uniq cut sed while do do find Grep uniq cut sed while while do find Grep uniq cut sed sed while do find Grep uniq cut cut sed while do find Grep uniq Grep uniq cut sed while do find find Grep uniq cut sed while do do find Grep uniq cut sed while while do find Grep uniq cut sed sed while do find Grep uniq cut cut sed while do find Grep uniq トレンドから外れようが良い ものは良い。 grepを使いこなすとServer からテキストファイルをダウ ンロードしてExcelで解析と かいう謎行動が激減するので 使ってみてね!
  • 20. find Grep uniq cut sed while do do find Grep uniq cut sed while while do find Grep uniq cut sed sed while do find Grep uniq cut cut sed while do find Grep uniq Grep uniq cut sed while do find find Grep uniq cut sed while do do find Grep uniq cut sed while while do find Grep uniq cut sed sed while do find Grep uniq cut cut sed while do find Grep uniq やっぱり grepで出来 ない検索は無 かった!