Este sitio web funciona mejor con JavaScript.
Inicio
Explorar
帮助
返回水杉在线
登录水杉在线
登录水杉码园
10215501450
/
Computer-Systems-Labs
Seguir
1
Destacar
0
Fork
0
Código
Incidencias
0
Pull Requests
0
Lanzamientos
0
Wiki
Actividad
Explorar el Código
10215501415
master
龙羿霏
hace 2 años
padre
8488a65502
commit
e8e5030504
Se han
modificado 1 ficheros
con
15 adiciones
y
0 borrados
Dividir vista
Opciones de diferencias
Mostrar estadísticas
Descargar archivo de parche
Descargar archivo de diferencias
+15
-0
lab1/10215501415.sh
+ 15
- 0
lab1/10215501415.sh
Ver fichero
@ -0,0 +1,15 @@
#两个字符串文件均由python生成
#按数字排序
#覆盖写
cat hw1.txt
|
sort
|
uniq -d > 1.txt
cat hw1.txt
|
sort -n
|
uniq -d > 1.txt
#追加写
cat hw1.txt
|
sort
|
uniq -d >> 2.txt
cat hw1.txt
|
sort -n
|
uniq -d >> 2.txt
#找出指定字符串
grep computer hw1-2.txt
grep -c computer hw1-2.txt
Escribir
Vista previa
Cargando…
Cancelar
Guardar