我正在尝试将相对路径转换为shell脚本中的绝对路径。
这个:import org.apache.spark.sql.functions._
val FilteredPSPDF = PSPDF.select(col("accountname"), when(col("amount") < 0, negate(col("amount"))).otherwise(col("amount")), col("currency"), col("datestamp"),col("orderid"),col("transactiontype"))
应该是这样的:/home/admin/Downloads/old/t2
。
我想这样做是因为rsync命令需要一个绝对路径。