0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

【自分用】Linuxコマンド - メモ

Last updated at Posted at 2017-06-06

#インデックス

###参考サイト

###時間のあるときに見たいサイト


###️ファイル

ファイルのいろいろ

ll  # ls -l と同じ
ファイルとファイルサイズが表示される

参考:https://webkaru.net/linux/ls-command/
 

フォルダー内のファイル数を調べる

1行に1ファイルを表示し、その行をカウントする
ls -1 | wc -l

ファイル一覧からファイル名(単語数)をカウントする
ls | wc -w

参考:http://qiita.com/stc1988/items/e3a1d7dccafe4ab573fa
 

ファルダー内から任意の単語を含むファイル名の物を表示する

ls | grep 単語

 
ファイルをコピーする(クリップボードにコピーする方法)

#macの場合
cat ファイル名 | pbcopy


#リモートからローカルにコピーする場合
参考:http://qiita.com/katsukii/items/225cd3de6d3d06a9abcb

 
ファイルの削除

rm -rf ファイル名

#ディレクトリ内のファイル削除
rm -rf フォルダー名/*

###プロセス

プロセスを調べる?

ps 

参考:https://webkaru.net/linux/ps-command/

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?