報告書 #1666
●ls -lrt
<pre>
$ ls -lrt
合計 93488
-rwxrwxr-x 1 ec2-user ec2-user 221 1月 10 2017 start_parse_env.sh
drwxrwxr-x 127 ec2-user ec2-user 4096 6月 1 2017 node_modules
drwxrwxr-x 5 ec2-user ec2-user 4096 6月 20 2017 coslab_web_xml
-rw-rw-r-- 1 ec2-user ec2-user 62490200 9月 1 2017 coslab_tweet_bot.tar.gz
-rwxrwxr-x 1 ec2-user ec2-user 318 9月 12 2017 user_list.sh
-rw-rw-r-- 1 ec2-user ec2-user 89739 9月 12 2017 email_list.txt
-rw-rw-r-- 1 ec2-user ec2-user 3333 12月 18 03:31 aaa.p12
</pre>
●プロジェクト単位のgrep
<pre>
$ find . -type f | xargs grep -n "Post"
./rss/create_feed.php:34: $query = new ParseQuery("Post");
./sitemap/create_sitemap.php:31: $query = new ParseQuery("Post");
./sitemap/create_sitemap.php:35: $num_post = $query->count('Post');
</pre>
●プロジェクトフォルダにいて、ホームディレクトリを参照したくなった時
<pre>
$ ls -lrt ~/
合計 93488
-rwxrwxr-x 1 ec2-user ec2-user 221 1月 10 2017 start_parse_env.sh
drwxrwxr-x 127 ec2-user ec2-user 4096 6月 1 2017 node_modules
</pre>
●プロジェクト全体を圧縮
<pre>
$ tar zcvf project.tar.gz project
</pre>
●プロジェクトを展開
<pre>
$ tar zxvf project.tar.gz
</pre>
●jsonを見やすくする
<pre>
$ head parse-server.info.2018-04-21 | jq .
{
"functionName": "findPosts",
"params": {
"skip": 0,
"limit": 5,
"query": "中二病でも恋がしたい!"
},
"level": "info",
</pre>
<pre>
$ ls -lrt
合計 93488
-rwxrwxr-x 1 ec2-user ec2-user 221 1月 10 2017 start_parse_env.sh
drwxrwxr-x 127 ec2-user ec2-user 4096 6月 1 2017 node_modules
drwxrwxr-x 5 ec2-user ec2-user 4096 6月 20 2017 coslab_web_xml
-rw-rw-r-- 1 ec2-user ec2-user 62490200 9月 1 2017 coslab_tweet_bot.tar.gz
-rwxrwxr-x 1 ec2-user ec2-user 318 9月 12 2017 user_list.sh
-rw-rw-r-- 1 ec2-user ec2-user 89739 9月 12 2017 email_list.txt
-rw-rw-r-- 1 ec2-user ec2-user 3333 12月 18 03:31 aaa.p12
</pre>
●プロジェクト単位のgrep
<pre>
$ find . -type f | xargs grep -n "Post"
./rss/create_feed.php:34: $query = new ParseQuery("Post");
./sitemap/create_sitemap.php:31: $query = new ParseQuery("Post");
./sitemap/create_sitemap.php:35: $num_post = $query->count('Post');
</pre>
●プロジェクトフォルダにいて、ホームディレクトリを参照したくなった時
<pre>
$ ls -lrt ~/
合計 93488
-rwxrwxr-x 1 ec2-user ec2-user 221 1月 10 2017 start_parse_env.sh
drwxrwxr-x 127 ec2-user ec2-user 4096 6月 1 2017 node_modules
</pre>
●プロジェクト全体を圧縮
<pre>
$ tar zcvf project.tar.gz project
</pre>
●プロジェクトを展開
<pre>
$ tar zxvf project.tar.gz
</pre>
●jsonを見やすくする
<pre>
$ head parse-server.info.2018-04-21 | jq .
{
"functionName": "findPosts",
"params": {
"skip": 0,
"limit": 5,
"query": "中二病でも恋がしたい!"
},
"level": "info",
</pre>