How delete content file in Linux
How to delete contents of a file in unix / linux
#cat > test /*to create a file*/
12345
cntl + d
#cat test /*to display file content*/
12345
#echo > test /*to delete the file contents*/
Category: Tips for linux
