mirror of
https://github.com/stefanocasazza/ULib.git
synced 2025-09-28 19:05:55 +08:00
10 lines
167 B
Bash
Executable File
10 lines
167 B
Bash
Executable File
#!/bin/sh
|
|
|
|
sort out/query.out > query.out1
|
|
sort ok/query.ok > query.ok1
|
|
|
|
mv query.out1 out/query.out
|
|
mv query.ok1 ok/query.ok
|
|
|
|
gvimdiff out/query.out ok/query.ok
|