SHELL中建立臨時檔案的方法

來源:互聯網
上載者:User

標籤:shell   隨機數   臨時檔案   mktemp   

    有時候,我們需要建立檔案臨時存放一些輸出的資訊,建立檔案時就可能出現檔案名稱存在的問題。如何建立唯一的檔案名稱,Linux為我們提供幾個方案:


1、mktemp(強烈推薦)

The  mktemp  utility takes the given filename template and overwrites a portion of it to create a unique filename.  Thetemplate  may  be  any filename with  some  number  of ‘Xs‘  appended to  it,  for  example /tmp/tfile.XXXXXXXXXX.  If  no  template is  specifieda  default  of tmp.XXXXXXXXXX is used and the -t flag is implied (see below).mktemp [-V] | [-dqtu] [-p directory] [template]-d     Make a directory instead of a file.    # 建立臨時目錄

下面示範一下 mktemp 如何使用:

#!/bin/bashTMPFILE=$(mktemp /tmp/tmp.XXXXXXXXXX) || exit 1echo "program output" >> $TMPFILE


2、$RANDOM

    編程中,隨機數是經常要用到的。BASH也提供了這個功能:$RANDOM 變數,返回(0-32767)之間的隨機數,它產生的是偽隨機數,所以不應該用於加密的密碼。

#!/bin/bashTMPFILE="/tmp/tmp_$RANDOM"echo "program output" >> $TMPFILE


3、$$變數

    Shell的特殊變數 $$儲存當前進程的進程號。可以使用它在我們啟動並執行指令碼中建立一個唯一的臨時檔案,因為該指令碼在運行時的進程號是唯一的。

    這種方法在同一個進程中並不能保證多個檔案名稱唯一。但是它可以建立進程相關的臨時檔案。

#!/bin/bashTMPFILE="/tmp/tmp_$$"echo "program output" >> $TMPFILE


本文出自 “Share your knowledge” 部落格,請務必保留此出處http://skypegnu1.blog.51cto.com/8991766/1439556

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.