StackOverflow 文件 Bash 教程 剪下命令 提取不操作 提取不操作 Created: November-22, 2018 你只能提取部分行,而不是重新排序或重複欄位。 $ cut -d, -f2,1 <<<'John,Smith,USA' ## Just like -f1,2 John,Smith $ cut -d, -f2,2 <<<'John,Smith,USA' ## Just like -f2 Smith 基本用法沒有引用