1
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.

シェルスクリプト 雑多メモ

Last updated at Posted at 2018-11-07

環境

  • os : mac 10.13.6
  • シェル : zsh

基本

cd xx : ディレクトリ移動
cd ~ : ホームディレクトリに移動
cd .. : 一つ上のディレクトリに移動
ls : ディレクトリ内のファイル一覧表示
ls -a :隠しファイル含めて表示
pwd :カレントディレクトリ表示
⌘+r :入力履歴を検索
mkdir :ディレクトリ作成
touch :ファイル作成
rm :ファイル削除
mv :ファイル移動

unzip

unzip hogehoge

peco

めっちゃ便利

#以下でインストール
brew install peco
#lsの出力結果をpecoに渡して、それを検索できる
#try now!!!!
ls | peco

pbcopy

#クリップボードにコピーするスクリプト
#標準出力の結果をコピーする
echo hoge | pbcopy # "hoge" をコピー
cat hoge.txt | pbcopy #ファイル内容をコピー

1
1
1

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
1
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?