Important Linux Command Tricks
cat : concatenate
cat > amit.js
would create new file, ❗❗ BUT, if same file then rewrite.
cat >> amit.js
will give prompt to write something new, and will append to current file.
Note: ❗❗❗
\> : means rewrite
\>> : means append at the end
so, ...
webdevamit.hashnode.dev1 min read