產生空檔案和單行內容的檔案



產生空檔案
Windows命令提示字元
copy NUL a.txt

Linux command line
touch a.txt

預先創建一個大小的檔案
truncate -s 47484 empty_file
truncate -s 50k empty_file


單行內容檔案
這裡指的內容只有一行,且沒有換行符號

Windows命令提示字元

Linux command line
echo -n "one string without next line character" > a.txt
echo -e "one string without next line character\c" > a.txt
printf "one string without next line character" > a.txt

留言