Linux 基本指令 nano 和 cat
nano
$ nano t.pycat
$ cat t.py
print("This is a Python script!")$ cat t.py > t1.py
$ cat t1.py
print("This is a Python script!")Last updated
$ nano t.py$ cat t.py
print("This is a Python script!")$ cat t.py > t1.py
$ cat t1.py
print("This is a Python script!")Last updated
$ cat t.py t1.py > t2.py
$ cat t2.py
print("This is a Python script!")
print("This is a Python script!")$ cat t3 >> t2.py
$ cat t2.py
print("This is a Python script!")
print("This is a Python script!")
This is t3.