ftp で Login failed したときの再接続
2004-07-29-2 / カテゴリ: [linux][unix][network][command] / [permlink]

ftp> user username
で、再ログインできる

ImageMagick で背景画像をセット
2004-07-09-1 / カテゴリ: [linux][command] / [permlink]

$ display -window root /path/file.jpg

less の対象がバイナリのときのメッセージ(のメモ)
2004-07-08-3 / カテゴリ: [unix][command] / [permlink]

miyazaki@nwmail:~/local/src$ /usr/local/bin/less.org stable.tar.gz
"stable.tar.gz" may be a binary file.  See it anyway?

ifconfig 無差別(promiscuous)プロミスキャスモード
2004-07-08-2 / カテゴリ: [linux][command][network] / [permlink]

有効にする
# ifconfig eth0 promisc
無効にする
# ifconfig eth0 -promisc

GNU なソース
2004-07-01-1 / カテゴリ: [unix][linux][command][アプリ] / [permlink]

http://ring.asahi-net.or.jp/pub/GNU/

diffutils ... diff とか
fileutils ... cp,df,du,ls,mv,rm とか
findutils ... find,locate とか
textutils ... head,md5sum,sort,tail とか
などなど

openssl でファイルの暗号化(共通鍵暗号方式)
2004-06-28-1 / カテゴリ: [linux][command][SSL][暗号] / [permlink]

暗号化
$ openssl des3 -e -in file.txt [-out encrypt.txt]
復号
$ openssl des3 -d -in encrypt.txt [-out file.txt]

-in/-out がなければ、入出力は stdin/stdout になる。

NetBIOS 名の名前解決
2004-06-18-1 / カテゴリ: [win][command][network] / [permlink]

バイナリダンプ
2004-06-17-1 / カテゴリ: [unix][command] / [permlink]

$ od -x jis.txt
-x で 16進

screen 使い方2
2004-06-16-1 / カテゴリ: [unix][linux][command][screen] / [permlink]

C-a C-c 新規ウインドウの生成・ウインドウ切り替え
C-a (num:0~9) ウインドウの切り替え
C-a C-n 次のウインドウに切り替え(C-a n / C-a SPC でもOK)
C-a C-p 前のウインドウに切り替え(C-a p / C-a h / C-a BS でもOK)
C-a N 現在のウインドウ番号の表示
C-a C-w ウインドウリストの表示
C-a C-k 現在のウインドウを破棄(C-a k でもOK)
C-a ? キーアサインの表示

指定複数ファイルを一気に nkf
2004-06-10-2 / カテゴリ: [linux][shell][command] / [permlink]

for i in *; do nkf -ed $i > tmp; \mv tmp $i; done

screen 設定
2004-06-08-2 / カテゴリ: [unix][linux][command][screen] / [permlink]

.screenrc
escape ^t^t
defhstatus "screen [^En:^Et] <${USER}@${HOST}:${PWD}>"
hardstatus string "screen@%H[%n] %h"
vbell off
これで、コマンドキーが C-t に。

screen 使い方基本
2004-06-08-1 / カテゴリ: [unix][linux][command][screen] / [permlink]

起動
$ screen

detached(screenを残して落ちる)
C-a d

resume(セッションの再開)
$ screen -r

既に起動・セッション中のscreenを横取り(先方はdetached)
$ screen -d -r

既に起動・セッション中のscreenを横取り(先方はdetached&ログアウト)
$ screen -D -r

既に起動・セッション中のscreenを共有
$ screen -x

cygwin rxvt 背景画像
2004-05-21-1 / カテゴリ: [win][command][cygwin] / [permlink]

めんどいけど、こんな感じ
C:\WINDOWS>c:\cygwin\usr\local\bin\rxvt.exe  -display :0 -fn "Lucida Console-12"
 -fm "SH G30-12" -km euc -title 'rxvt' -pixmap "/home/hmiyazaki/work/My Pictures
/background/sirakaba-l.xpm" -e /bin/bash.exe --login -i
(1行で!)

screen インストール(Solaris)
2004-05-12-1 / カテゴリ: [unix][Solaris][command][screen] / [permlink]

src: ftp://ftp.uni-erlangen.de/pub/utilities/screen/
解説: http://www.kawaz.jp/pukiwiki/?screen など
./configure --prefix=/export/home/miyazaki/local/screen-4.0.2

Solaris に lynx インストール
2004-04-15-3 / カテゴリ: [unix][Solaris][command] / [permlink]

http://lynx.isc.org/release/
ふつーにまけまけいんすとーる

強制 umount
2004-04-14-1 / カテゴリ: [linux][command] / [permlink]

# umount -f /mnt

cygwin - Win パス変換コマンド
2004-04-13-1 / カテゴリ: [win][command][cygwin] / [permlink]

$ cygpath -w /cygdrive/c
c:\
$ cygpath 'c:\windows'
/cygdrive/c/windows
引数無しで、helpメッセージ

awkで区切り文字を指定
2004-03-23-2 / カテゴリ: [unix][command] / [permlink]

コンマ区切りの第1カラムのみを出力する
awk -F ',' '{print $1}' file

複数ファイル内の特定文字列を一括置換
2004-03-10-2 / カテゴリ: [perl][command] / [permlink]

$ perl -p -i.bak -e 's/strings/strings-with/g' *
カテゴリ: command / 前ページ 1 2 3 4 5 6 次ページ

最終更新時間: 2013-05-02 16:12