PIXNET Logo登入

My Humble House

跳到主文

我的狗窩

部落格全站分類:生活綜合

  • 相簿
  • 部落格
  • 留言
  • 名片
  • 10月 24 週二 201711:13
  • [linux] connect to another server with local display (連到另一台主機, 同時把Display參數帶過去)

ssh -X username@server.ip
(繼續閱讀...)
文章標籤

bamil 發表在 痞客邦 留言(0) 人氣(37)

  • 個人分類:Linux/Unix
▲top
  • 7月 09 週三 201411:25
  • How to merge all text fils in any directory to one single file?

cat * > merged_file.txt
(繼續閱讀...)
文章標籤

bamil 發表在 痞客邦 留言(0) 人氣(10)

  • 個人分類:Linux/Unix
▲top
  • 3月 03 週一 201411:02
  • tar gzip 壓縮/解壓縮指令

壓縮:
tar -cvzf F1.tar.gz F2.txt F3.txt
( 將 F2.txt 與 F3.txt 打包壓縮在 F1.tar.gz )
(繼續閱讀...)
文章標籤

bamil 發表在 痞客邦 留言(0) 人氣(11,998)

  • 個人分類:Linux/Unix
▲top
  • 1月 22 週三 201411:50
  • [Linux] mksh: Fatal error: Cannot load command `./abc': Bad file number

Error:
mksh: Fatal error: Cannot load command `./abc': Bad file number
Solution:
chmod u+x abc
(繼續閱讀...)
文章標籤

bamil 發表在 痞客邦 留言(0) 人氣(84)

  • 個人分類:Linux/Unix
▲top
  • 11月 26 週二 201318:00
  • Auto list possible selections in Linux

in .cshrc
 
set filec
set autolist
or
ctrl-D
(繼續閱讀...)
文章標籤

bamil 發表在 痞客邦 留言(0) 人氣(11)

  • 個人分類:Linux/Unix
▲top
  • 11月 14 週四 201316:01
  • CVS Commands

cvs status
列出所有檔案目前版本的status, status的種類可見:
http://www.network-theory.co.uk/docs/cvsmanual/Filestatus.html
 
(繼續閱讀...)
文章標籤

bamil 發表在 痞客邦 留言(0) 人氣(60)

  • 個人分類:Linux/Unix
▲top
  • 9月 13 週四 201212:17
  • cvs update output message



CodeMeaningDescription

?
what?
It's not a file in CVS. CVS knows nothing about this file


A
Added
This is a file you just added to CVS but not yet committed. You have to commit it before others can see it.


C
Conflicted
A Conflict occurred when you did CVS update. The conflicted lines are marked with special characters and you need to manually resolve the conflicts.


M
Modified
You have modified this file. It's different from what's in CVS and you need to commit (check in) the file to persist your changes in CVS


P
Patched
This file was patched when you did CVS update. The effect is the same as U (update), but the changes were so small that CVS decided to send a patch (P) instead of a whole file (U).


U
Updated
This file was updated when you ran CVS update. It could be a file that already existed on the local drive, or a new file brought down from the CVS repository.


R
Removed
You asked CVS to remove this file but you haven't committed the removal.


(繼續閱讀...)
文章標籤

bamil 發表在 痞客邦 留言(0) 人氣(35)

  • 個人分類:Linux/Unix
▲top
  • 9月 07 週五 201219:26
  • gcc compile error

Error Message:
 
AABBCC.o: In function `XXYYZZ':
AABBCC.c:(.text+0x6e): relocation truncated to fit: R_X86_64_PC32 against symbol `XD' defined in COMMON section in DDEEFF.o
(繼續閱讀...)
文章標籤

bamil 發表在 痞客邦 留言(0) 人氣(152)

  • 個人分類:Linux/Unix
▲top
  • 8月 29 週三 201211:35
  • ls directories only

ls -l | grep '^d'
(繼續閱讀...)
文章標籤

bamil 發表在 痞客邦 留言(0) 人氣(5)

  • 個人分類:Linux/Unix
▲top
  • 8月 21 週二 201220:07
  • Linux 如何比較兩個資料夾內的所有檔案 (Linux command to compare all files in two directories)

diff -qr dirA dirB |grep -v -e keyword1 -e keyword2 |sort > diffs.txt
 
diff -r : recursively compare all files and files in subdirectories
diff -q : output only whether files differ
(繼續閱讀...)
文章標籤

bamil 發表在 痞客邦 留言(2) 人氣(14,178)

  • 個人分類:Linux/Unix
▲top
12»

個人資訊

bamil
暱稱:
bamil
分類:
生活綜合
好友:
累積中
地區:

熱門文章

  • (66,581)Excel 2007 如何畫出有兩個y軸的圖 (兩個y座標軸)
  • (17,954)vi 的顯示行數與隱藏行數
  • (4,691)NCVerilog 錯誤訊息 Illegal operand for constant expression [4(IEEE)] 的解法
  • (3,993)[NC-Verilog] ncelab: *F,CUMSTS: Timescale directive missing on one or more modules. 錯誤訊息的原因
  • (2,611)vi 如何全部取代 (search and replace all)
  • (1,484)Syntax error: Bad fd number 的解決方法
  • (715)Xterm 的 copy / paste
  • (426)Windows 和 Exceed (X window) 之間的 copy / paste
  • (244)ncvlog: *E,UNBERR: (1) unbound instance(s). 的解決方法
  • (62)漢語拼音

文章分類

  • EDA (5)
  • Verilog (1)
  • Matlab (3)
  • Linux/Unix (12)
  • Windows / MS-DOS (3)
  • vi (9)
  • 未分類文章 (1)

最新文章

  • [Design Compiler] "hdl-193" warning: cannot find the design 'XXX' in the library 'work'. (lbr-1)
  • [Vi] 游標跳至列首 (move cursor to beginning of the line)
  • [Vivado] How to change firmware ROM by modifying bitstream (updateMem)
  • [linux] connect to another server with local display (連到另一台主機, 同時把Display參數帶過去)
  • [MATLAB] Pass float/char type data to a C MEX function
  • [MATLAB] MTIMES is not fully supported for integer classes
  • [Linux] How to copy several specific files to one directory (複製多個特定檔案到別的資料夾)
  • [linux] search keyword in files
  • [vi] 統計string出現次數 (count string in vi)
  • [EDA] ERROR:Portability:3 - This Xilinx application has run out of memory

最新留言

  • [22/05/06] 訪客 於文章「Excel 2007 如何畫出有兩個y軸...」留言:
    回饋您這方面資訊,我是從 PTT搜尋引擎的排名,看...
  • [20/11/23] 訪客 於文章「Linux 如何比較兩個資料夾內的所有檔...」留言:
    您好,想請問如果我兩個不同資料夾內的檔案名稱不同,但其餘皆相...
  • [18/07/28] 訪客 於文章「Linux 如何比較兩個資料夾內的所有檔...」留言:
    this post is very use ful h...
  • [16/05/11] bamil 於文章「[EDA] ERROR:Portabil...」留言:
    To restore the setting: bcd...
  • [15/03/05] 有同樣的問題 於文章「[Windows] Chrome 瀏覽器...」留言:
    應該不是這個問題= =...
  • [14/02/07] seetha sweety 於文章「[Matlab] Comment mul...」留言:
    Here's some great news for tho...
  • [14/02/07] KS. KAVITHA 於文章「[Matlab] Comment mul...」留言:
    Some people are naturally bett...
  • [09/05/02] 咖啡達人 於文章「來自香港的 Thomas Wong "教...」留言:
    歡迎來我的部落格坐坐喔 這裡有好康的事情要告訴大家喔 ...
  • [09/01/12] bb 於文章「漢語拼音...」留言:
    恭喜狗窝开张!...

文章精選

文章搜尋

誰來我家

參觀人氣

  • 本日人氣:
  • 累積人氣: