Geogebra的下載和使用

Geogebra是一個數學作圖軟體。

update at 2025-07-13 官方離線下載地址:https://clients2.google.com/service/update2/crx?response=redirect&os=win&arch=x64&os_arch=x86_64&nacl_arch=x86-64&prod=chromecrx&prodchannel=&prodversion=77.0.3865.90&lang=zh-CN&acceptformat=crx2,crx3&x=id%3Dbnbaboaihhkjoaolfnfoablhllahjnee%26installsource%3Dondemand%26uc

下載地址:https://wiki.geogebra.org/en/Reference:GeoGebra_Installation

Read more

linux下找一個文件

find -name 那個文件的可能名稱,可用*替代任何字符。 找文件名及其內容: find . -name "*.conf" -exec grep -H "config_value" {} \ 專門查找文本文件及內容: find . -type f -name "*NERDTree*" -exec file {} \; | grep 'text' | cut -d: -f1 | xargs grep -I -l "ejsoon" 只找文本文件的文件名: find . -type f -name "*NERDTree*" -exec file {} \; | grep 'text' | cut -d: ... Read more