行から列
$ seq 5
1
2
3
4
5
$ seq 5 | xargs
1 2 3 4 5
$ seq 5 | tr '\n' ' '
1 2 3 4 5
$ seq 5 | paste -sd ' '
1 2 3 4 5
$ seq 5 | sed -z 's/\n/ /g'
1 2 3 4 5
Read more about 行から列
$ seq 5
1
2
3
4
5
$ seq 5 | xargs
1 2 3 4 5
$ seq 5 | tr '\n' ' '
1 2 3 4 5
$ seq 5 | paste -sd ' '
1 2 3 4 5
$ seq 5 | sed -z 's/\n/ /g'
1 2 3 4 5
Read more about 行から列
パスポート申請 https://www.seikatubunka.metro.tokyo.lg.jp/passport/guide/application/0000000362.html
一般旅券発給申請書:1通
戸籍謄本(全部事項証明書):1通
hxselect -c -s '\n' 'div.pi-item[data-source="interests"]>div:nth-child(2)'
Read more about hxselct 要素抽出
drupal advagg モジュール使用時に、下記のメッセージ。
Status report (admin/reports/status) Read more about gzip is failing for js / css files
以下のショートカットでスタートアップフォルダを開き、
Win+R shell:startup
登録したいアプリのショートカットをペーストする。
アプリの一覧フォルダは、以下ショートカットで。
Win+R shell:appsfolder
Read more about Windows開始時に複数アプリを起動する設定
Uninstall old versions
$ sudo apt-get remove docker docker-engine docker.io containerd runc
Install using the repository
Set up the repository Read more about Install Docker Engine on Ubuntu
データ確認。言語が指定されているコンテンツを確認する例。
$ drush sql-query "SELECT nid,title,language FROM node WHERE language <> 'und'"
言語を無指定に更新。
$ drush sql-query "UPDATE node SET language = 'und' WHERE language <> 'und'"
フィールドの言語も更新する必要あり。 Read more about drupalのnode言語をSQLで一括変更
$ head monsters.txt おにこんぼう 魔獣系 ぼうぎょ スライムエンペラー スライム系 ほじょ ヘルクラッシャー ゾンビ系 ぼうがい りゅうおうデータ区切りをカンマ、レコード区切りを改行として、3行を1レコードにする。
$ awk '{if(NR%3)ORS=",";else ORS="\n";print}' monsters.txt | head
おにこんぼう,魔獣系,ぼうぎょ
スライムエンペラー,スライム系,ほじょ
ヘルクラッシャー,ゾンビ系,ぼうがい
りゅうおう,???,まほう
にじくじゃく,魔獣系,まほう Read more about awkで3行を1行にまとめる
10件
$ jrnl -n 10
範囲指定
$ jrnl -until today $ jrnl -from "last year" -until march
検索して編集
$ jrnl -contains "竹工芸" --edit
タグでフィルタ Read more about jrnlコマンドメモ