判斷一檔案是不是字元裝置檔案

2021-06-08 06:53:44 字數 738 閱讀 7963

順便補習一下字串的擷取:

$:擷取變數varible從n1到n2之間的字串。

可以根據特定字元偏移和長度,使用另一種形式的變數擴充套件,來選擇特定子字串。試著在 bash 中輸入以下行:

$ exclaim=cowabunga

$ echo $

cow$ echo $

abunga

這種形式的字串截斷非常簡便,只需用冒號分開來指定起始字元和子字串長度。

方法一:

#!/bin/bash

myfile=/root/shiyan_huang/kaoshi/4/test

fd=`ls -l $myfile`

fp=$

[ "$fp" = "c" ] && cp $myfile /root

若用if的話,bash必須有fi結尾,如下:

if [ "$fp" = "c" ]

then

cp $myfile /root

fi注:fd=`ls -l $myfile`中的」`「是鍵盤左上角的

方法二:

#!/bin/sh

echo 「input file name:」

read filename

if [ -c "$filename" ]

then

cp $filename /root

echo "yes,it is."

fi

判斷是不是PE檔案

include include assert.h include include tchar.h ifdef unicode define ispefile ispefilew define isdigisig isdigisigw else define ispefile ispefilea de...

字元流之一(檔案加密)

題目 準備乙個文字檔案 非二進位制 其中包含ascii碼的字元和中文字元。設計乙個方法 public static void encodefile file encodingfile,file encodedfile 在這個方法中把encodingfile的內容進行加密,然後儲存到encodedfi...

python(一) 檔案操作

my file open my file.txt w 用法 open 檔名 形式 其中形式有 w write r read.my file.write text 該語句會寫入先前定義好的 text my file.close 關閉檔案 this is my first test.this is th...