zoukankan      html  css  js  c++  java
  • [Bash] Operations against files

    Viewing file

    Viewing the whole file:

    cat package.json
    

    Viewing the whole file with line number

    cat -n package.json
    

    Viewing the file with pagination

    less package.json
    

    Highlight the search term, for example, we want to looking for lodash inside package.json, what we can do is:

    less package.json
    /lodash
    

    Press q to exit the viewing.

    Open the file

    open lib/npm.js
    open lib/npm.js -a TextEdit ## when there is no default app accosiate with this file extension
    

    Write content to file

    Create a new file

    touch file.txt
    echo 'hi' > file.txt
    

    It write 'hi' into file.txt, but if we do

    echo 'hello world' > file.txt
    

    It overwrites the hi.

    If you want to append content to the end of file:

    echo "hi" >> file.txt
    

    Now inside file we have:

    hello world
    hi
    

    Remove a file

    rm file.txt
    

    Move a file

    If you want to move index.js to a src folder:

    mv index.js src/index.js
    

    Move all files from one dir to another dir

    Move all the files under lib folder to src folder

    mv lib/* src/
    

    Move all the nested folder and files from lib to src:

    cp -R lib/* src/
    

    Copy file

    Copy README.mnd to src folder:

    cp README.md src/README.md
    

    Rename a file

    Rename index.js file to a.js:

    mv index.js a.js
    

    Find files in folder

    Find all png files under images folder

    find images/ -name "*.png"
    

    It is case sensitive, to ignore case, need to add -i:

    find images/ -iname "*.png"
    

    Find and delete files

    Find all javascript files under dist folder and delete those:

    find dist/ -name "*.js" -delete
    

    Find files and run cmd against files

    Add -exec flag and following with commands.

    find images/ -name "*.ng" -exec pngquant {} 
    
  • 相关阅读:
    Java IO6:字符流进阶及BufferedWriter、BufferedReader
    Java IO5:字符流
    Java IO4:字符编码
    Java IO3:字节流
    Java IO2:RandomAccessFile
    Java IO1:IO和File
    Java异常
    Java语法糖4:内部类
    SharePoint JavaScript API 根据文件路径删除文件
    SharePoint PowerShell 批量删除遗弃视图
  • 原文地址:https://www.cnblogs.com/Answer1215/p/14389471.html
Copyright © 2011-2022 走看看