SlideShare ist ein Scribd-Unternehmen logo
1 von 1
Downloaden Sie, um offline zu lesen
Unix/Linux コマンドリファレンス                                                                                      .com
                  ファイルコマンド                                              システム情報
ls – ディレクトリの内容を一覧表示する                                date – 現在の日付と時間を表示する
ls -al – `.’ で始まるファイルも含めた一覧を詳細表示する                   cal – 今月のカレンダを表示する
cd dir - dir (ディレクトリ)へ移動する                           uptime – 現在の uptime を表示する
cd – ホームディレクトリへ移動する                                  w – オンライン状態のユーザの情報を表示する
pwd – 現在のディレクトリの名前を表示する                              whoami – 現在のユーザ名を表示する
mkdir dir – dir を作成する                                finger user – user の情報を表示する
rm file – file(ファイル)を削除する                            uname -a – カーネル情報を表示する
rm -r dir – dir と dir 配下全てのファイル・ディレクトリを削             cat /proc/cpuinfo – CPU 情報を表示する
除する                                                  cat /proc/meminfo – メモリ情報を表示する
     -f file – file を強制的に削除する
rm                                                   man command – command のマニュアルを表示する
rm   -rf dir – dir と dir 配下全てを強制的に削除する *             df – ディスク使用状況を表示する
cp   file1 file2 – file1 を file2 にコピーする              du – ディレクトリのディスク使用状況を表示する
cp   -r dir1 dir2 – dir1 を dir2 にコピーする               free – メモリとスワップの使用状況を表示する
mv   file1 file2 – file1 を file2 に移動(名前変更)する;もし      whereis app – app(アプリケーション)のバイナリ・man ペー
file2 がディレクトリの場合は file1 を file2 配下に移動する              ジの場所を表示する
ln -s file link – file のシンボリックリンク link を作成す          which app – デフォルトで使用される app を表示する
る
                                                                 アーカイブの作成・展開
touch file – file を更新・作成する
                                                     tar cf file.tar files – files を含む file.tar という名の
cat > file – 標準入力を file に書き出す
                                                     tar ファイルを作成する
more file – file の内容を出力する
                                                     tar xf file.tar – ファイルを展開する
head file – file の先頭の 10 行を出力する
                                                     tar czf file.tar.gz files – tar ファイルを Gzip で圧
tail file – file の末尾の 10 行を出力する
                                                     縮したファイルを作成する
tail -f file – file が更新される度に出力し続ける
                                                     tar xzf file.tar.gz – Gzip で圧縮されたファイルを展開
                 プロセス管理                              する
ps – ユーザの現在アクティブなプロセスを表示する                           tar cjf file.tar.bz2 – tar ファイルを Bzip2 で圧縮した
top – 全ての実行中プロセスを表示する                                ファイルを作成する
                                                     tar xjf file.tar.bz2 – Bzip2 で圧縮されたファイルを展
kill pid – プロセス ID が pid のプロセスを終了させる
                                                     開する
killall proc – 名前が proc のプロセスを全て kill する *
                                                     gzip file – file を圧縮し file.gz に名前変更する
bg – 停止中またはバッググラウンドのジョブを表示する; バッグ
                                                     gzip -d file.gz – file.gz を展開し file に戻す
グラウンドの停止中ジョブを再開する
fg – 最新のジョブをフォアグラウンドに切り替える
                                                                   ネットワーク
fg n – n 番目のジョブをフォアグラウンドに切り替える
                                               ping host – host へ ping し結果を出力する
              ファイルのアクセス権                       whois domain – domain の whois 情報を取得する
chmod octal file – file のアクセス権を octal(数字 1 つがそ dig domain – domain の DNS 情報を取得する
れぞれ所有者, グループ, その他を意味する)に設定する;                  dig -x host – host の逆引きをする
   ● 4 – 読み込み (r)
                                               wget file – file をダウンロードする
   ● 2 – 書き込み (w)
                                               wget -c file – 一時中断した file の続きから再開する
   ● 1 – 実行 (x)
例:                                                     インストール
chmod 777 – 全てのユーザに rwx を許可する              ソースからインストールする: 
chmod 755 – 所有者に rwx を, グループとその他に rx を許可する ./configure
その他のオプションは man chmod を参照すること               make
                        SSH                  make install
ssh user@host – host へ user として接続する          dpkg -i pkg.deb – パッケージのインストール(Debian)
ssh -p port user@host – port 指定で ssh 接続する    rpm -Uvh pkg.rpm – パッケージのインストール(RPM)
ssh-copy-id user@host – 公開鍵を user@host に登録する
                                                              ショートカット
                        検索                   Ctrl+C – 現在のコマンドを終了する
grep pattern files – files 内の pattern を検索する  Ctrl+Z – 現在のコマンドを中断する, fg でフォアグランドジョ
grep -r pattern dir – dir 配下の全てのファイル内の       ブ、bg でバックグラウンドジョブに切り替える
pattern を検索する                                Ctrl+D – exit と同様に現在のセッションをログアウトする
command | grep pattern – command の出力結果から     Ctrl+W – 現在行で 1 単語を消す
pattern を検索する
                                             Ctrl+U – 現在行全体を消す
locate file – file というパターンを含む全てのファイルを検
                                             Ctrl+R – 最近実行したコマンドを表示する
索する
                                             !! - 最後に実行したコマンドを繰り返す
                                             exit – 現在のセッションをログアウトする

                                                     * 十分注意して使ってくださいね.
                                                  翻訳:むとうまさお <mutoh at highway.ne.jp> (http://www.yotabanana.com/)

Weitere ähnliche Inhalte

Was ist angesagt?

20090323 Phpstudy
20090323 Phpstudy20090323 Phpstudy
20090323 Phpstudy
Yusuke Ando
 
Ohp Seijoen H20 06 Mojiretsu
Ohp Seijoen H20 06 MojiretsuOhp Seijoen H20 06 Mojiretsu
Ohp Seijoen H20 06 Mojiretsu
sesejun
 
英語ブログのスヽメ - 1000スピーカープロジェクト#5
英語ブログのスヽメ - 1000スピーカープロジェクト#5英語ブログのスヽメ - 1000スピーカープロジェクト#5
英語ブログのスヽメ - 1000スピーカープロジェクト#5
Yusuke Kawasaki
 
Open Source Type Pad Mobile
Open Source Type Pad MobileOpen Source Type Pad Mobile
Open Source Type Pad Mobile
Hiroshi Sakai
 
Упаковка и развертывание программ на perl под debian‎
Упаковка и развертывание программ на perl под debian‎Упаковка и развертывание программ на perl под debian‎
Упаковка и развертывание программ на perl под debian‎
mayperl
 

Was ist angesagt? (20)

XS Japan 2008 Citrix Japanese
XS Japan 2008 Citrix JapaneseXS Japan 2008 Citrix Japanese
XS Japan 2008 Citrix Japanese
 
за Ruby
за Rubyза Ruby
за Ruby
 
20090323 Phpstudy
20090323 Phpstudy20090323 Phpstudy
20090323 Phpstudy
 
Ohp Seijoen H20 06 Mojiretsu
Ohp Seijoen H20 06 MojiretsuOhp Seijoen H20 06 Mojiretsu
Ohp Seijoen H20 06 Mojiretsu
 
Windows xp
Windows xpWindows xp
Windows xp
 
Gorm
GormGorm
Gorm
 
Gorm @ gopher china
Gorm @ gopher chinaGorm @ gopher china
Gorm @ gopher china
 
英語ブログのスヽメ - 1000スピーカープロジェクト#5
英語ブログのスヽメ - 1000スピーカープロジェクト#5英語ブログのスヽメ - 1000スピーカープロジェクト#5
英語ブログのスヽメ - 1000スピーカープロジェクト#5
 
Computer chamak
Computer chamakComputer chamak
Computer chamak
 
Html5 bangla-e-book
Html5  bangla-e-bookHtml5  bangla-e-book
Html5 bangla-e-book
 
policy-strategy_and_leadership_review
 policy-strategy_and_leadership_review policy-strategy_and_leadership_review
policy-strategy_and_leadership_review
 
Speed matters, So why is your site so slow?
Speed matters, So why is your site so slow?Speed matters, So why is your site so slow?
Speed matters, So why is your site so slow?
 
Help mijn website is gehackt - Joomla User Group Den Bosch 2014
Help mijn website is gehackt - Joomla User Group Den Bosch 2014Help mijn website is gehackt - Joomla User Group Den Bosch 2014
Help mijn website is gehackt - Joomla User Group Den Bosch 2014
 
HTML-Bangla E-book
HTML-Bangla E-bookHTML-Bangla E-book
HTML-Bangla E-book
 
Open Source Type Pad Mobile
Open Source Type Pad MobileOpen Source Type Pad Mobile
Open Source Type Pad Mobile
 
俄罗斯Gost标准,进出口购买商品目录№RG 2279
俄罗斯Gost标准,进出口购买商品目录№RG 2279俄罗斯Gost标准,进出口购买商品目录№RG 2279
俄罗斯Gost标准,进出口购买商品目录№RG 2279
 
multimedia networking
multimedia networkingmultimedia networking
multimedia networking
 
俄罗斯进出口标准,技术规格,法律,法规,中英文,目录编号RG 2687
俄罗斯进出口标准,技术规格,法律,法规,中英文,目录编号RG 2687俄罗斯进出口标准,技术规格,法律,法规,中英文,目录编号RG 2687
俄罗斯进出口标准,技术规格,法律,法规,中英文,目录编号RG 2687
 
Упаковка и развертывание программ на perl под debian‎
Упаковка и развертывание программ на perl под debian‎Упаковка и развертывание программ на perl под debian‎
Упаковка и развертывание программ на perl под debian‎
 
Computer fundamental full
Computer fundamental fullComputer fundamental full
Computer fundamental full
 

Ähnlich wie Linux Commands

技術トレンディセミナー フレームワークとしてのTrac
技術トレンディセミナー フレームワークとしてのTrac技術トレンディセミナー フレームワークとしてのTrac
技術トレンディセミナー フレームワークとしてのTrac
terada
 
Hd60 Gd9 Manual
Hd60 Gd9 ManualHd60 Gd9 Manual
Hd60 Gd9 Manual
guest807a1
 
【13-C-4】 「もう業務はとまらない!オフライン機能を使った業務アプリケーションの実例と最新 Curl 情報」
【13-C-4】 「もう業務はとまらない!オフライン機能を使った業務アプリケーションの実例と最新 Curl 情報」【13-C-4】 「もう業務はとまらない!オフライン機能を使った業務アプリケーションの実例と最新 Curl 情報」
【13-C-4】 「もう業務はとまらない!オフライン機能を使った業務アプリケーションの実例と最新 Curl 情報」
devsumi2009
 

Ähnlich wie Linux Commands (20)

20090418 イケテルRails勉強会 第2部Air編 解説
20090418 イケテルRails勉強会 第2部Air編 解説20090418 イケテルRails勉強会 第2部Air編 解説
20090418 イケテルRails勉強会 第2部Air編 解説
 
20090410 Gree Opentech Presentation (opening)
20090410 Gree Opentech Presentation (opening)20090410 Gree Opentech Presentation (opening)
20090410 Gree Opentech Presentation (opening)
 
20090522 Candycane
20090522 Candycane20090522 Candycane
20090522 Candycane
 
Shibuya.abc - Gnashで遊ぼう
Shibuya.abc - Gnashで遊ぼうShibuya.abc - Gnashで遊ぼう
Shibuya.abc - Gnashで遊ぼう
 
Cloud era -『クラウド時代』マッシュアップ技術による地方からの世界発信
Cloud era -『クラウド時代』マッシュアップ技術による地方からの世界発信Cloud era -『クラウド時代』マッシュアップ技術による地方からの世界発信
Cloud era -『クラウド時代』マッシュアップ技術による地方からの世界発信
 
20090418 イケテルRails勉強会 第2部Air編
20090418 イケテルRails勉強会 第2部Air編20090418 イケテルRails勉強会 第2部Air編
20090418 イケテルRails勉強会 第2部Air編
 
20090410 Gree Opentech Main
20090410 Gree Opentech Main20090410 Gree Opentech Main
20090410 Gree Opentech Main
 
PostgreSQLで学ぶBoyer-Moore-Horspoolアルゴリズム
PostgreSQLで学ぶBoyer-Moore-HorspoolアルゴリズムPostgreSQLで学ぶBoyer-Moore-Horspoolアルゴリズム
PostgreSQLで学ぶBoyer-Moore-Horspoolアルゴリズム
 
Search Engines Chapter 1 Summary
Search Engines Chapter 1 SummarySearch Engines Chapter 1 Summary
Search Engines Chapter 1 Summary
 
技術トレンディセミナー フレームワークとしてのTrac
技術トレンディセミナー フレームワークとしてのTrac技術トレンディセミナー フレームワークとしてのTrac
技術トレンディセミナー フレームワークとしてのTrac
 
sigfpai73-kaji
sigfpai73-kajisigfpai73-kaji
sigfpai73-kaji
 
Ubuntu Firefox オススメ・アドオン
Ubuntu Firefox オススメ・アドオンUbuntu Firefox オススメ・アドオン
Ubuntu Firefox オススメ・アドオン
 
20070329 Phpconf2007 Training
20070329 Phpconf2007 Training20070329 Phpconf2007 Training
20070329 Phpconf2007 Training
 
Hd60 Gd9 Manual
Hd60 Gd9 ManualHd60 Gd9 Manual
Hd60 Gd9 Manual
 
03 Getting Started
03 Getting Started03 Getting Started
03 Getting Started
 
Linuxユーザーのための Windows 管理入門
Linuxユーザーのための Windows 管理入門Linuxユーザーのための Windows 管理入門
Linuxユーザーのための Windows 管理入門
 
Grails紹介
Grails紹介Grails紹介
Grails紹介
 
Green IT
Green ITGreen IT
Green IT
 
【13-C-4】 「もう業務はとまらない!オフライン機能を使った業務アプリケーションの実例と最新 Curl 情報」
【13-C-4】 「もう業務はとまらない!オフライン機能を使った業務アプリケーションの実例と最新 Curl 情報」【13-C-4】 「もう業務はとまらない!オフライン機能を使った業務アプリケーションの実例と最新 Curl 情報」
【13-C-4】 「もう業務はとまらない!オフライン機能を使った業務アプリケーションの実例と最新 Curl 情報」
 
使いこなそうGUC
使いこなそうGUC使いこなそうGUC
使いこなそうGUC
 

Kürzlich hochgeladen

+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
?#DUbAI#??##{{(☎️+971_581248768%)**%*]'#abortion pills for sale in dubai@
 

Kürzlich hochgeladen (20)

2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Exploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusExploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with Milvus
 
Spring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUKSpring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUK
 
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
 
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
 
AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challenges
 
MS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsMS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectors
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
Ransomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdfRansomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdf
 
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamDEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
 

Linux Commands

  • 1. Unix/Linux コマンドリファレンス .com ファイルコマンド システム情報 ls – ディレクトリの内容を一覧表示する date – 現在の日付と時間を表示する ls -al – `.’ で始まるファイルも含めた一覧を詳細表示する cal – 今月のカレンダを表示する cd dir - dir (ディレクトリ)へ移動する uptime – 現在の uptime を表示する cd – ホームディレクトリへ移動する w – オンライン状態のユーザの情報を表示する pwd – 現在のディレクトリの名前を表示する whoami – 現在のユーザ名を表示する mkdir dir – dir を作成する finger user – user の情報を表示する rm file – file(ファイル)を削除する uname -a – カーネル情報を表示する rm -r dir – dir と dir 配下全てのファイル・ディレクトリを削 cat /proc/cpuinfo – CPU 情報を表示する 除する cat /proc/meminfo – メモリ情報を表示する -f file – file を強制的に削除する rm man command – command のマニュアルを表示する rm -rf dir – dir と dir 配下全てを強制的に削除する * df – ディスク使用状況を表示する cp file1 file2 – file1 を file2 にコピーする du – ディレクトリのディスク使用状況を表示する cp -r dir1 dir2 – dir1 を dir2 にコピーする free – メモリとスワップの使用状況を表示する mv file1 file2 – file1 を file2 に移動(名前変更)する;もし whereis app – app(アプリケーション)のバイナリ・man ペー file2 がディレクトリの場合は file1 を file2 配下に移動する ジの場所を表示する ln -s file link – file のシンボリックリンク link を作成す which app – デフォルトで使用される app を表示する る アーカイブの作成・展開 touch file – file を更新・作成する tar cf file.tar files – files を含む file.tar という名の cat > file – 標準入力を file に書き出す tar ファイルを作成する more file – file の内容を出力する tar xf file.tar – ファイルを展開する head file – file の先頭の 10 行を出力する tar czf file.tar.gz files – tar ファイルを Gzip で圧 tail file – file の末尾の 10 行を出力する 縮したファイルを作成する tail -f file – file が更新される度に出力し続ける tar xzf file.tar.gz – Gzip で圧縮されたファイルを展開 プロセス管理 する ps – ユーザの現在アクティブなプロセスを表示する tar cjf file.tar.bz2 – tar ファイルを Bzip2 で圧縮した top – 全ての実行中プロセスを表示する ファイルを作成する tar xjf file.tar.bz2 – Bzip2 で圧縮されたファイルを展 kill pid – プロセス ID が pid のプロセスを終了させる 開する killall proc – 名前が proc のプロセスを全て kill する * gzip file – file を圧縮し file.gz に名前変更する bg – 停止中またはバッググラウンドのジョブを表示する; バッグ gzip -d file.gz – file.gz を展開し file に戻す グラウンドの停止中ジョブを再開する fg – 最新のジョブをフォアグラウンドに切り替える ネットワーク fg n – n 番目のジョブをフォアグラウンドに切り替える ping host – host へ ping し結果を出力する ファイルのアクセス権 whois domain – domain の whois 情報を取得する chmod octal file – file のアクセス権を octal(数字 1 つがそ dig domain – domain の DNS 情報を取得する れぞれ所有者, グループ, その他を意味する)に設定する; dig -x host – host の逆引きをする ● 4 – 読み込み (r) wget file – file をダウンロードする ● 2 – 書き込み (w) wget -c file – 一時中断した file の続きから再開する ● 1 – 実行 (x) 例: インストール chmod 777 – 全てのユーザに rwx を許可する ソースからインストールする:  chmod 755 – 所有者に rwx を, グループとその他に rx を許可する ./configure その他のオプションは man chmod を参照すること make SSH make install ssh user@host – host へ user として接続する dpkg -i pkg.deb – パッケージのインストール(Debian) ssh -p port user@host – port 指定で ssh 接続する rpm -Uvh pkg.rpm – パッケージのインストール(RPM) ssh-copy-id user@host – 公開鍵を user@host に登録する ショートカット 検索 Ctrl+C – 現在のコマンドを終了する grep pattern files – files 内の pattern を検索する Ctrl+Z – 現在のコマンドを中断する, fg でフォアグランドジョ grep -r pattern dir – dir 配下の全てのファイル内の ブ、bg でバックグラウンドジョブに切り替える pattern を検索する Ctrl+D – exit と同様に現在のセッションをログアウトする command | grep pattern – command の出力結果から Ctrl+W – 現在行で 1 単語を消す pattern を検索する Ctrl+U – 現在行全体を消す locate file – file というパターンを含む全てのファイルを検 Ctrl+R – 最近実行したコマンドを表示する 索する !! - 最後に実行したコマンドを繰り返す exit – 現在のセッションをログアウトする * 十分注意して使ってくださいね. 翻訳:むとうまさお <mutoh at highway.ne.jp> (http://www.yotabanana.com/)