After starting to use Git a few months ago, I thought it would be useful to show the branch of the current repository in my zsh prompt. I did some searching online, but I could not find an appealing solution. Everything I found was either too slow or just didn't show the correct information. So I figured I might as well just throw one together myself. First and foremost, my prompt needed to be fas
If you’re like me, well, then I feel sorry for you. But if you’re like me, then perl is the first item out of your scripting toolbox. Unfortunately there are moments when you are forced to use sh. And since we’d rather use perl, sh syntax leaves our brains faster than thirteen year old can hack a Windows system. This article provides a brief overview of some of the things we love to forget. The
あちこちのホームページから無断でコピー&リンクしてます。 自分が見やすいようにまとめるためのページなんで許してね(許さないって人はメールかブログで削除指示してください)。 このページおよび全ての記事はリンクフリーです。 連絡先:vics66@じーめーる.com
はじめに findを普通に使うと, 以下のようにディレクトリとともに出力されるが, ファイル名のみ抽出したい場合がある. $ find . -type f ./path1/to1/file1.pl ./path2/to2/file2.rb ./path3/to3/file3.py ./path4/to4/file4.php ./path5/to5/file5.js
Mac から Windows への高速なデータ書き込みが可能に! Paragon NTFS for Mac OS X Windows の NTFS ボリュームを、Mac 標準のファイルシステムと同等の速度で利用でき、長期間の運用でも安定して使えるシステムドライバ Paragon NTFS for Mac OS X。専用のインストーラーで簡単に導入でき、運用中も特別な操作を必要としません。Mac と Windows を併用している人には必携のツールです。 レビュー記事を見る 価格:2,100 PARAGON Software Group 【6-Dec】【あす楽】チイロ ダンボーモバイルバッテリーミニ cheero Power Plus DANBOARD version -mini- 大人気のダンボーバッテリーに、手のひらサイズが登場しました! リリース直後、あっという間に売り切れた、ダンボ
[第136回関西Debian勉強会 + Linux Kernel 勉強会 LT大会](https://debianjp.connpass.com/event/90376/)での発表資料です。
Appendix J. An Introduction to Programmable CompletionThe programmable completion feature in Bash permits typing a partial command, then pressing the [Tab] key to auto-complete the command sequence. [1] If multiple completions are possible, then [Tab] lists them all. Let's see how it works. bash$ xtra[Tab] xtraceroute xtrapin xtrapproto xtraceroute.real xtrapinfo xtrapreset xtrapchar xtrapout xtra
Oh My Zsh is an open source, community-driven framework for managing your zsh configuration. Sounds boring. Let's try again. Oh My Zsh will not make you a 10x developer...but you may feel like one. Once installed, your terminal shell will become the talk of the town or your money back! With each keystroke in your command prompt, you'll take advantage of the hundreds of powerful plugins and beautif
Posted on January 31st, 2010. I spend a lot of time in a Terminal window at a command line. Up until about a month ago I was using bash for my shell. I decided to try switching to Zsh after hearing a lot of good things about it and I'm very happy with the change. A few days ago I tweeted my current Zsh prompt and the general response was: "Cool, but how did you do it?" I promised to write more abo
Bash tips: Colors and formatting (ANSI/VT100 Control sequences) The ANSI/VT100 terminals and terminal emulators are not just able to display black and white text ; they can display colors and formatted texts thanks to escape sequences. Those sequences are composed of the Escape character (often represented by “^[” or “<Esc>”) followed by some other characters: “<Esc>[FormatCodem”. In Bash, the <Es
目次 当サイトについて bash シェルスクリプト入門 -シェルスクリプトのいろは- コマンド Tips シェルスクリプト Tips 変数を使用する 配列を使用する 入力と出力 if 文と test コマンド for 文の使用方法 while 文の使用方法 case 文の使用方法 関数の使用方法 引数を処理する 終了ステータス シグナルと trap コマンド フィルタを使用した文字列操作 1 フィルタを使用した文字列操作 2 日付を取得する 文字コードと改行コード シェルスクリプトのデバッグ AWK リファレンス (Deprecated) シェルスクリプト ライブラリ 『ether.sh』 お知らせ Bluesky を始めました @sunone.me 変更履歴 2023.10.07 ページ内リンクを修正した。 2021.02.01 このサイトに「もう 1 ページ追加しよう」と思ってから、も
注意このドキュメントは、すでにshまたはbashでそれなりにスクリプトを書いている人向けに書かれています。自分が対象読者でないと思ったら、すっぱりと読むのをあきらめてください。時間の無駄です。 このドキュメントではBash version 3.x 系(3.1以降) 4.x 系を対象にしています。2.x 系だと微妙に文法が違うところがあるので注意してください。ちなみに 4.x 系だと、変態なことをしなくても同じことができたり(連想配列が使えるようになったはず)、逆にもっと変態なことができたりします。(2013/09/11 追記) 書きかけで放置している間にメイン環境が 4.x になりました。3.x と 4.x でどこが違うかもう覚えてないし調べるのも面倒なので 4.x 系前提でいきます。 このドキュメントは、主にPOSIXなshにはないBashの機能を使い倒すことを目的としています。ここにあ
組み込みとつぶやき-高田馬場 このブログは更新を停止。Twitterのアーカイブになっています。 http://blog.suga41.com にて更新中です。 こんにちは。 ビーコンの菅原です。 ルネサスのHEWで RAM上にプログラムを転送するやりかたについて書きます。 この記事は SHやH8等の旧日立系のマイコンが対象となります。 M16,R8等は違うやり方となります。 その前にRAMの配置について・・ 一般的なマイコンでは変数といっても、配置される記憶領域により三種類あります。 未初期化変数(BSSセクション) RAM領域に配置する。不定値となるが、初期化で0クリアされるものもある。書き換え可能 【例】 short foo; 初期化変数 RAM領域に配置する。初期値がROM領域あり、初期化時にROMから初期値をRAM領域にコピーする。書き換え可能 【例】 short foo = 1
リリース、障害情報などのサービスのお知らせ
最新の人気エントリーの配信
処理を実行中です
j次のブックマーク
k前のブックマーク
lあとで読む
eコメント一覧を開く
oページを開く