亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

蟲蟲首頁| 資源下載| 資源專輯| 精品軟件
登錄| 注冊

Bash-scripting

  • 本教程舉例說明了如何使用 ADO 編程模型對數據源進行查詢及更新。教程首先講述了完成此項任務的必要步驟

    本教程舉例說明了如何使用 ADO 編程模型對數據源進行查詢及更新。教程首先講述了完成此項任務的必要步驟,然后分別通過 Microsoft Visual Basic、以 VC++ Extensions 為特征的 Microsoft Visual C++、Microsoft Visual Basic、Scripting Edition 和以 ADO for Windows Foundation Classes (ADO/WFC) 為特征的 Microsoft Visual J++ 進行更為具體的說明。

    標簽: ADO 教程 舉例 如何使用

    上傳時間: 2016-10-22

    上傳用戶:xymbian

  • Lotus Notes開發用的在線DHTML編輯器,基于Active X control 1. This rich text editor is based on the editor used

    Lotus Notes開發用的在線DHTML編輯器,基于Active X control 1. This rich text editor is based on the editor used in an older sandbox posting I found. The majority of this code was NOT written by me. Credit goes to someone at Lotus (I think) for the original code. I only extended the base code to add more features, such as cut/copy/paste and adding tables. 2. This editor is based on an Active X control, so it will only work in Internet Explorer. I tested this in IE 5.5, but I think it should would in IE 5.x The Active X control is marked "safe for scripting" and should not trigger a warning from your browser about unsafe content.

    標簽: editor control Active Lotus

    上傳時間: 2016-11-27

    上傳用戶:kr770906

  • uCOSII只提供了操作系統內核

    uCOSII只提供了操作系統內核,用戶要自己添加文件處理、人機界面、網絡接口等重要部分。其中Shell(人機界面)提供了人與機器交互的界面,是機器服務于人的體現,是系統必不可少的重要組成部分。現代的很多OS如UNIX、DOS、VxWorks都提供了友好的命令行界面。Windows更是提供了GUI。大部分人認識OS都是從這里開始的。 由于Skyeye下的仿真串口USART已經實現了中斷方式的接收(實際是從鍵盤接收輸入),而且串口輸出(實際上是輸出到終端屏幕)也已經實現,所以實現一個類似DOS或Bash的簡化版Shell并不困難。其本質思想就是:Shell作為一個uC/OSII下的任務,接收用戶輸入的字符,存儲到緩沖區,并回顯在屏幕上,以回車鍵為用戶輸入的結束信號,隨后解析用戶輸入的命令名稱、參數,調用相應的命令函數。一直到這個命令函數運行返回,才繼續Shell的人機交互界面。Shell作為一個任務工作于內核之外,占用一個任務號。

    標簽: uCOSII 操作系統 內核

    上傳時間: 2014-01-22

    上傳用戶:xc216

  • 這是一本實用的指南

    這是一本實用的指南,并不十分的嚴肅,嘗試用實際的東西來代替那些理論的例子。我分部分來寫因為我對那些知道自己在談論什么人寫的脫離實際的和過分單純的例子并不感到興奮,展示一些比較酷的bash的特性,

    標簽:

    上傳時間: 2014-12-07

    上傳用戶:rishian

  • Introduction Matlab is an ideal tool for simulating digital communications systems, thanks to its

    Introduction Matlab is an ideal tool for simulating digital communications systems, thanks to its easy scripting language and excellent data visualization capabilities. One of the most frequent simulation tasks in the field of digital communications is bit-error- rate testing of modems. The bit-error-rate performance of a receiver is a figure of merit that allows different designs to be compared in a fair manner. Performing bit-error-rate testing withMatlab is very simple, but does require some prerequisite knowledge.

    標簽: communications Introduction simulating digital

    上傳時間: 2017-03-20

    上傳用戶:as275944189

  • ArtFormula package contains two nonvisual Delphi component for symbolic expression parsing and evalu

    ArtFormula package contains two nonvisual Delphi component for symbolic expression parsing and evaluation. Provides runtime scripting engine for automating your programs.

    標簽: ArtFormula expression component nonvisual

    上傳時間: 2013-12-08

    上傳用戶:yt1993410

  • 無論你是新手還是老手

    無論你是新手還是老手,或是使用其他語言的程序員,我能肯定你能在此書用受益。而本書除了介紹BASH的知識之外,也有許多有用的關于Linux/UNIX的知識和其他shell的介紹。

    標簽:

    上傳時間: 2017-04-16

    上傳用戶:aysyzxzm

  • ccache 是一個快速的編譯器緩存。當您編譯一個程序的時候

    ccache 是一個快速的編譯器緩存。當您編譯一個程序的時候,它會緩存中間的結果。這樣,不論什么時候您重新編譯同一個程序,編譯所需要得時間將被大大縮短。對于普通的編譯來說,這可以提高編譯速度5到10倍。 這個想法,來自 Erik Thiele 用bash寫的 compilercache 。只不過,ccache用C再實現了一遍。但比前者性能高許多,也有更多的特性。 (注:Linux下運行)

    標簽: ccache 編譯器 緩存 程序

    上傳時間: 2017-05-01

    上傳用戶:gxmm

  • 用純C語言編寫的一個Linux下的Shell

    用純C語言編寫的一個Linux下的Shell,包含tch和bash的基本功能(包含重定向和后臺運行),暫時不支持管道。已經在cygwin和Ubantu 7.10下測試通過。 主要包含: makefile 編譯生成myshell可執行文件 myshell.c 主函數(涉及程序入口) utility.c 所有功能函數(將近1000行) myshell.h(包含宏定義、結構體聲明、庫函數的頭文件,及utility.c中的所有函數的聲明) readme 用戶手冊(當用戶在myshell里輸入help <command> 時,輸出<command>的使用說明)

    標簽: Linux Shell C語言 編寫

    上傳時間: 2014-02-05

    上傳用戶:xymbian

  • The many variants of the Unix operating system require use of a mode of thought that s significantly

    The many variants of the Unix operating system require use of a mode of thought that s significantly different from the one that s required by simpler operating systems. Think Unix introduces readers to important fundamental and intermediate Unix commands and, in the process, inculcates them in the Unix way of thinking. It s a worthy goal in a world with more Linux users than ever, and author Jon Lasser accomplishes it. He s both a capable writer and a knowledgeable user of Unix shell commands. Lasser uses bash under Red Hat Linux in most examples--which usually apply equally well to other Unix variants--and makes asides about other shells and environments, as needed.

    標簽: significantly operating variants of

    上傳時間: 2017-09-04

    上傳用戶:qq521

主站蜘蛛池模板: 绥阳县| 惠安县| 金湖县| 商河县| 盱眙县| 体育| 鞍山市| 班戈县| 长治县| 长子县| 昂仁县| 河津市| 榆中县| 甘泉县| 秭归县| 和林格尔县| 诸城市| 颍上县| 黄大仙区| 买车| 白山市| 宁都县| 郯城县| 巫山县| 清涧县| 雅安市| 甘谷县| 晋中市| 调兵山市| 辽宁省| 新竹县| 承德县| 广州市| 巴青县| 漯河市| 尚志市| 元江| 交城县| 延津县| 忻城县| 勃利县|